Replace
Finds the specified substring(s) and replaces it with the new text
Inputs
Replace(string, search, replacewith, [isCaseSensitive], [allMatches])
string
- A text value to search insearch
- Text 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