FindMatchOfRegexp
Finds for “index”-th match of regular expression pattern in a string value
FindMatchOfRegexp("text text", "[a-m]") → "e"
FindMatchOfRegexp("Hello world", "[l]") → "l"Inputs
FindMatchOfRegexp(string, searchRegexp, [isCaseSensitive], [index])
string- Any text value to search insearchRegexp- A regular expression to find to[isCaseSensitive]- [optional:trueby default**]** - Setfalseif search should be case insensitive[index]- [optional:0by default**]**
Last updated
Was this helpful?