mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-19 19:08:17 +00:00
297 B
297 B
kumo.string.split(STRING, PATTERN)
{{since('2024.09.02-c5476b89')}}
Splits STRING by PATTERN, returning an array-style table
holding the substrings.
assert(
kumo.json_encode(kumo.string.split('Mary had a little lamb', ' '))
== '["Mary","had","a","little","lamb"]'
)