RegexpReplace
Syntax
RegexpReplace(string, pattern, replacement)
📘When the regular expression you want to use contains a slash, quotation or other special character, you will need to use a backslash (\) to escape the special character.Regexpcan vary based on the databases. Check the documentation of your database to find the correct syntax.
Examples
RegexpReplace([Product Name], "(\\d+) (\\d+mm)", "\\1-\\2")




Last updated
Was this helpful?