String operators
String operators
The following string operators are available:
Operator | Meaning | Example | Result |
= | Assignment | A = ’xyz’ | ’xyz’ |
+ | Addition | A = ’x’ + ’yz’ | ’xyz’ |
(:) | Sub-string | A = B(1:2) | B=’xyz’ -> A = ’xy’ |
The start and end positions can each be specified by a parameter or a formula for sub-string operators as well.