Overview
Arguments
Return Value
Joined string value.
Remarks
Examples
Code Block |
---|
string-join(('Now', 'is', 'the', 'time', '...'), ' ') returns "Now is the time ..." string-join(names, ',') returns "a,b,c" |
Joined string value.
Code Block |
---|
string-join(('Now', 'is', 'the', 'time', '...'), ' ') returns "Now is the time ..." string-join(names, ',') returns "a,b,c" |