Siebel eScript Language Reference > Siebel eScript Language Overview > Operators >

String Concatenation Operator


You can use the + operator to join strings together, or concatenate them. The following line:

var proverb = "A rolling stone " + "gathers no moss."

creates the variable proverb and assigns it the string "A rolling stone gathers no moss." If you concatenate a string with a number, the number is converted to a string.

var newstring = 4 + "get it";

This bit of code creates newstring as a string variable and assigns it the string "4get it".


 Siebel eScript Language Reference 
 Published: 18 April 2003