OCR Programming
264
are two characters used to delimit required literal strings; if one of the delimiter characters is present in the desired
literal string, use the other delimiter.
Template Valid data Invalid data
"35+BC" 35+BC AB+22
New Line (E)
To create a template of multiple lines, add E between the template of each single line.
Template Valid data Valid data Invalid data
999EAAAA 321 987 XYZW
BCAD ZXYW 12
String Extract (C)
This operator combined with others defines a string of characters to extract from the scanned data. The string
extract is structured as follows:
CbPe
Where:
• C is the string extract operator
• b is the string begin delimiter
• P is the category (one or more numeric or alpha characters) describing the string representation
• e is the string end delimiter
Values for b and e can be any scannable character. They are included in the output stream.
Template Incoming data Output
C>A> XQ3>ABCDE> >ABCDE>
->ATHRUZ>123 >ATHRUZ>
1ABCZXYZ No Output
E
C