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 in

  • searchRegexp - A regular expression to find to

  • [isCaseSensitive] - [optional: true by default**]** - Set false if search should be case insensitive

  • [index] - [optional: 0 by default**]**

Last updated