Skip to main content

This version of the product is no longer supported, and this documentation is no longer updated regularly. See the latest version of this content.Opens in a new tab

Concatenation Operator

The first string operator we'll look at is the concatenation operator (_). It's simple; you use it to combine multiple strings into a single string.

SAMPLES>set a = "license", b = "to", c = "speed", d = " ", e = "!"

SAMPLES>set s=a _ d _ b _ d _ c _ e

SAMPLES>write s
license to speed!
SAMPLES>
FeedbackOpens in a new tab