String.concat()

Signature

String concat (String s1, String s2)

Domain

ACTION, CONDITION, QUERY, BUI

Description

Concatenates the two argument strings and returns the resulting String.

Parameters

NameTypeDescription
s1StringA String to concatenate.
s2StringA second String to concatenate.

Returns

TypeDescription
StringThe result of concatenating the two argument strings.

Cautions

none