Skip to main content
Skip table of contents

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)
A = B(2:)

B=’xyz’ -> A = ’xy’
B=’xyz’ -> A = ’yz’


The start and end positions can each be specified by a parameter or a formula for sub-string operators as well.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.