當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.strings.regex_replace用法及代碼示例


將匹配正則表達式 patterninput 的元素替換為 rewrite

用法

tf.strings.regex_replace(
    input, pattern, rewrite, replace_global=True, name=None
)

參數

  • input string Tensor ,要處理的源字符串。
  • pattern 字符串或標量字符串Tensor,要使用的正則表達式,請參閱更多詳細信息https://github.com/google/re2/wiki/Syntax
  • rewrite 字符串或標量字符串 Tensor ,用於匹配替換的值,支持 backslash-escaped 數字(\1 到 \9)可以插入匹配相應括號組的文本。
  • replace_global bool ,如果 True 替換所有不重疊的匹配項,否則僅替換第一個匹配項。
  • name 操作的名稱(可選)。

返回

  • 字符串 Tensor 的形狀與 input 相同,並帶有指定的替換。
tf.strings.regex_replace("Text with tags.<br /><b>contains html</b>",
                         "<[^>]+>", " ")
<tf.Tensor:shape=(), dtype=string, numpy=b'Text with tags.  contains html '>

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.strings.regex_replace。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。