**Find:** Two commands, one with array return, and one with boolean:
```
string regexFind [regex, startFrom, returnAll];
```
> **string:** STRING: the string to search in
> **regex:** STRING: regular expression
> **startFrom:** NUMBER: the start index
> **returnAll:** BOOL: return all results
> **Returns:** ARRAY: Array of pairs in format: `[[match, index], [match, index] , ...]` (if returnAll is false, only the first match is returned). If no match is found or there is an error, an empty array is returned.
```
string regexMatch regex
```
> **string:** STRING: the string to search in
> **regex:** STRING: regular expression
> **Returns:** BOOL: whether a match was found
**Replace:** replace all found matches:
```
string regexReplace [regex, replace]
```
> **string:** STRING: the string to search in
> **regex:** STRING: regular expression
> **replace:** STRING: regular expression
> **Returns:** STRING: the string after replacing all found matches (or original string in case of error)