4. Elements of QUEL Statements : Operations : String Concatenation
 
Share this page                  
String Concatenation
To concatenate strings, use the + operator: for example:
"This " + "is " + "a " + "test."
gives the value
"This is a test."
You can also concatenate strings using the concat function; see String.