REGEXP_REPLACE
Finds strings that match the given regular expression and replaces the strings with the given string.
Syntax
REGEXP_REPLACE(input string, regex string, replacement_string string) → string
input: The expression to search for a matching string.
regex: The Perl-compatible regular expression (PCRE) to match against.
replacement_string: The string with which to replace the matching string.
Examples
REGEXP_REPLACE example
REGEXP_REPLACE example
Last updated