SplitRegexp
Last updated
Split a value by the specified regular expression delimiter
SplitRegexp("text", "t") → ["","ex",""]
SplitRegexp("12345678", "[123]") → ["","","","45678"]SplitRegexp(string, delimiterRegexp, [isCaseSensitive])
string - A text value to split
delimiterRegexp - A regular expression to split by
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
Last updated