Investment Studio > Expressions > Functions > Text > CONCATENATE

string concatenate(string argument [, ...])

Returns the argument strings joined to a single string. Equivalent to the & operator.

Example

=concatenate("This", " is ", "funny")

and

="This" & " is " & "funny"

both equal "This is funny".

See also rept.