chomp
endswith
format
formatlist
indent
join
lower
regex
regexall
replace
split
startswith
strrev
substr
title
trim
trimprefix
trimsuffix
trimspace
upper
join produces a string by concatenating together all elements of a given list of strings with the given delimiter.
join(separator, list)
> join(", ", ["foo", "bar", "baz"]) foo, bar, baz > join(", ", ["foo"]) foo
On this page: