tf.raw_ops.RegexReplace
bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
Replaces matches of the pattern
regular expression in input
with the replacement string provided in rewrite
.
View aliases
Compat aliases for migration
See
Migration guide for
more details.
tf.compat.v1.raw_ops.RegexReplace
tf.raw_ops.RegexReplace(
input, pattern, rewrite, replace_global=True, name=None
)
It follows the re2 syntax (https://github.com/google/re2/wiki/Syntax)
Args:
input: A Tensor
of type string
. The text to be processed.
pattern: A Tensor
of type string
.
The regular expression to be matched in the input
strings.
rewrite: A Tensor
of type string
.
The rewrite string to be substituted for the pattern
expression where it is
matched in the input
strings.
replace_global: An optional bool
. Defaults to True
.
If True, the replacement is global (that is, all matches of the pattern
regular
expression in each input string are rewritten), otherwise the rewrite
substitution is only made for the first pattern
match.
name: A name for the operation (optional).
Returns:
A Tensor
of type string
.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-26 UTC."],[],[],null,["# tf.raw_ops.RegexReplace\n\n\u003cbr /\u003e\n\nReplaces matches of the `pattern` regular expression in `input` with the replacement string provided in `rewrite`.\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.raw_ops.RegexReplace`](https://www.tensorflow.org/api_docs/python/tf/raw_ops/RegexReplace)\n\n\u003cbr /\u003e\n\n tf.raw_ops.RegexReplace(\n input, pattern, rewrite, replace_global=True, name=None\n )\n\nIt follows the re2 syntax (\u003chttps://github.com/google/re2/wiki/Syntax\u003e)\n\nArgs:\ninput: A `Tensor` of type `string`. The text to be processed.\npattern: A `Tensor` of type `string`.\nThe regular expression to be matched in the `input` strings.\nrewrite: A `Tensor` of type `string`.\nThe rewrite string to be substituted for the `pattern` expression where it is\nmatched in the `input` strings.\nreplace_global: An optional `bool`. Defaults to `True`.\nIf True, the replacement is global (that is, all matches of the `pattern` regular\nexpression in each input string are rewritten), otherwise the `rewrite`\nsubstitution is only made for the first `pattern` match.\nname: A name for the operation (optional).\n\nReturns:\nA `Tensor` of type `string`."]]