> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/findmatchofregexp.md).

# FindMatchOfRegexp

Finds for “index”-th match of regular expression pattern in a string value

```mathematica
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\*\*]\*\*
