chomp
endswith
format
formatlist
indent
join
lower
regex
regexall
replace
split
startswith
strcontains
strrev
substr
templatestring
title
trim
trimprefix
trimsuffix
trimspace
upper
split produces a list by dividing a given string at all occurrences of a given separator.
split(separator, string)
> split(",", "foo,bar,baz") [ "foo", "bar", "baz", ] > split(",", "foo") [ "foo", ] > split(",", "") [ "", ]
On this page: