NexJ Logo

Append()

Joins together the specified strings of text. This function takes any number of string values as arguments and returns a string value.

Syntax

Append(<first_string>, <second_string> ... <last_string>)

Additional arguments must be separated with commas.

Input

first_string

string, null

The first string to conjoin with subsequent strings.

second_string

string, null

(Optional) The second string to append to the end of the first string.

last_string

string, null

(Optional) The last string to append to the end of the previous string.

Output

string

Examples

  • The expression Append() returns "".
  • The expression Append("abc", "def") returns "abcdef".