This documentation is archived and is not being maintained.
concat Method (String)
Visual Studio 2010
Returns a string value containing the concatenation of the current string with any supplied strings.
function concat([string1 : String [, ... [, stringN : String]]]]) : String
The result of the concat method is equivalent to: result = curstring + string1 + ... + stringN. The curstring refers the string stored in the object that supplies the concat method. A change of value in either a source or result string does not affect the value in the other string. If any of the arguments are not strings, they are first converted to strings before being concatenated to curstring.
Show: