Development tools : Global functions : String category : concat
  
concat
Description
Concatenates two strings.
Usage
Client side: Y
Server side: Y
Syntax
String concat(String string1, String string2)
Arguments
string1
The string concatenated to the first half part of the returned value. The argument can be any string.
string2
The string concatenated to the second half part of the returned value. The argument can be any string.
Return
Returns a string that represents the concatenation of string1's characters followed by the string2's characters.
Example
concat("Hello ", "World")
returns "Hello World"
Go up to
String category