Concatenation
Concatenation is used to join strings using the plus symbol. If you want to concatenate a non-string value, you need to cast it first.
Case shift
There are two methods to change the case of a string or character in OCR reference language:
- .upper converts a string to all
uppercase e.g. "bob".upper is "BOB"
- .lower converts a string to all lowercase e.g. "BOB".lower is "bob"