splitWithMatches
Split a string by a pattern, keeping the matched parts as separate elements in the result.
string(required): the string to splitpattern(required): regex pattern to split on
utlx
splitWithMatches("hello123world456", "\\d+")
// ["hello", "123", "world", "456"]