tf.strings.regex_replace

Replace elements of input matching regex pattern with rewrite.

Used in the notebooks

Used in the guideUsed in the tutorials
tf.strings.regex_replace("Text with tags.<br /><b>contains html</b>",
                         "<[^>]+>", " ")
<tf.Tensor: shape=(), dtype=string, numpy=b'Text with tags.  contains html '>

inputstring Tensor, the source strings to process.
patternstring or scalar string Tensor, regular expression to use, see more details at https://.com/google/re2/wiki/Syntax
rewritestring or scalar string Tensor, value to use in match replacement, supports backslash-escaped digits (\1 to \9) can be to insert text matching corresponding parenthesized group.
replace_globalbool, if True replace all non-overlapping matches, else replace only the first match.
nameA name for the operation (optional).

string Tensor of the same shape as input with specified replacements.