T Function Reference - join

str_join

Join strings with a separator

Concatenates items of a List or Vector into a single string, separated by sep.

Parameters

Returns:

Returns: The joined string.

Examples

str_join(["a", "b", "c"], "-")
-- Returns = "a-b-c"
str_join(["a", "b", "c"])
-- Returns = "abc"

See Also

str_string