String Operations

Designer Administrator
This manual is in pilot operation.

Multiple strings can be concatenated using '&'.

  "abc" & "def"
     Interpreted as "abcdef".

When string operations are applied to numbers, logical values, or objects, they are first converted to strings and then concatenated.

  "abc" & 1
     Interpreted as "abc1.0000".