followed at position 10.
Modifier
Modifier has two types of fields: A-String and O-String to define the output
contents.
A-String
Format:
"
abc...
"
'a', 'b' and 'c' in the string can be any character.
A-String defines a string of characters to be added to the output. For example, if the
original data is:
BCD
and the output string is
BarCoDe
"ar", 'o' and 'e' in output string are added strings and can be defined by A-Strings.
Note: If '
*
' on Programming Sheet are included in A-String, one interblock delay
defined by Group 2 will be inserted.
O-String
Format:
O-STR
,
P
,
N
,
O-String always applies to the original data. It contains two parameters: The first
is position parameter (P) that specifies the start output position in the original data.
Parameter N tells how many characters will be included beginning from P.
Example:
Original data is:
Barcode
Then
O-Str
,
4
,
4
,
Gives output as
code
Note:
-- N can be '
#
' for all remaining characters from P.
-- If P greater than the length of original data, the O-String will be skipped.
-- If N is greater than the number of remaining characters counting from P, the
remaining characters are included as valid.