mirror of
https://github.com/KumoCorp/kumomta.git
synced 2026-08-19 08:01:07 +00:00
336 B
336 B
kumo.string.rsplitn(STRING, LIMIT, PATTERN)
{{since('2024.09.02-c5476b89')}}
Splits STRING by PATTERN in reverse order, returning an array-style table
holding at most LIMIT substrings.
assert(
kumo.json_encode(kumo.string.rsplitn('Mary had a little lamb', 3, ' '))
== '["lamb","little","Mary had a"]'
)