MicroStation CONNECT Edition Help

String Concatenation Operator

The string concatenation operator (+) enables strings to be added together to form a single string. The operator is the same as the arithmetic addition operator, but strings and numbers cannot be used together within a single expression using the '+' operator.

Examples:

Expression Result
'A' + 'B' + 'C' + 'D' 'A' + 'B' + 'C' + 'D' 'ABCD'
"A" + "Z" + "1" 'AZ1'
'Con' + "cat" 'Concat'