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