concat
relationalai.semantics.std.strings
concat(s1: StringValue, s2: StringValue, *sn: StringValue) -> ExpressionConcatenate multiple strings together.
Parameters
(s1StringValue) - The first string to concatenate.
(s2StringValue) - The second string to concatenate.
(*snStringValue, default:()) - Additional strings to concatenate.
Returns
Expression- AnExpressionrepresenting the concatenated string. ReturnsString.
Examples
Concatenate strings together:
strings.concat("thing_", Thing.name)strings.concat("Hello", " ", "World")