# 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**
