> 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/findmatchesofstring.md).

# FindMatchesOfString

Finds all matches of string pattern in a string value

```mathematica
FindMatchesOfString("Hello World","l") → ["l","l","l"]
FindMatchesOfString("text text","ext") → ["ext","ext"]
```

#### Inputs

`FindMatchesOfString(string, search, [isCaseSensitive])`

* `string` - Any text value to search in
* `search` - Text to search for
* `[isCaseSensitive]` - **\[optional**: `true` by default\*\*]\*\* - Set `false` if search should be case **insensitive**
