ReplaceRegexp
Finds the specified regular expression pattern and replaces it with the new text
Inputs
ReplaceRegexp(string, searchRegexp, replaceWith, [isCaseSensitive], [allMatches])
string
- A text value to search insearchRegexp
- Regular expression to search forreplaceWith
- Text to replace with[isCaseSensitive]
- [optional:true
by default**]** - Setfalse
if search should be case insensitive[allMatches]
- [optional:true
by default**]** - Setfalse
if only the first match should be replaced
Last updated