Finds for “index”-th match of regular expression pattern in a string value
FindMatchOfRegexp("text text", "[a-m]") → "e" FindMatchOfRegexp("Hello world", "[l]") → "l"
FindMatchOfRegexp(string, searchRegexp, [isCaseSensitive], [index])
string - Any text value to search in
string
searchRegexp - A regular expression to find to
searchRegexp
[isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive
[isCaseSensitive]
true
false
[index] - [optional: 0 by default**]**
[index]
0
Last updated 2 years ago