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