Import: strings
The strings import exposes common string operations.
strings.has_prefix(s, prefix)
Returns true if s
starts with prefix
.
strings.has_suffix(s, suffix)
Returns true if s
ends with suffix
.
strings.join(a, sep)
Joins a list with the string supplied by sep
.
Multi-dimensional lists are supported, and non-string primitive types will be converted to their string equivalents. Maps and other complex non-list types are not supported.
strings.replace(s, old, new, times)
Replace the substring old
with the substring new
in the string s
by how many times the int parameter times
is specified.
If the string s
doesn't the substrings or if times
is zero,
then the string is returned without any changes applied.
strings.trim(s, cutset)
Trim the leading and trailing characters in cutset
from the string s
.
If the string doesn't have the cutset, then the string is returned
unmodified.
strings.trim_left(s, cutset)
Trim the leading characters contained in cutset
from the string s
.
If the string doesn't have the cutset, then the string is returned
unmodified.
strings.trim_right(s, cutset)
Trim the trailing characters contained in the cutset
from the
string s
. If the string doesn't have the cutset, then the string
is returned unmodified.
strings.trim_space(s)
Trim leading and trailing white space from the string s
. If the
string doesn't have any surrounding white space, then the string is
returned unmodified.
strings.trim_prefix(s, prefix)
Trim the prefix from the string s
. If the string doesn't have the
prefix, then the string is returned unmodified.
strings.trim_suffix(s, suffix)
Trim the suffix from the string s
. If the string doesn't have the
suffix, then the string is returned unmodified.
strings.to_lower(s)
Lowercase the string s.
strings.to_upper(s)
Uppercase the string s.
strings.split(s, sep)
Split the string 's' via a substring 'sep'. If 'sep' is not contained in 's', the return value will be a single-element list containing only 's'. As a special-case, if the input is already a list, it will be returned as-is. This allows calling the split function when not knowing if the input is already a list or not.