Python:re.sub()实现字符串替换

Posted 筱筱的春天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:re.sub()实现字符串替换相关的知识,希望对你有一定的参考价值。

1.re.sub的功能

re是regular expression的缩写,表示正则表达式

sub是substitude的缩写,表示替换

re.sub是正则表达式的函数,实现比普通字符串更强大的替换功能

eg:

replace 对比re.sub

>>>stri="hello 111 world 111"

>>>replaceStr=stri.replace("111", "222")       ===>"hello 222 world 222"

如果

>>>stri="hello 123 world 456"

>>>replacedStr = re.sub("\d+", "222", inputStr)   ===>把123和456,都换成222

2.re.sub的各个参数的详细解释

re.sub共有五个参数。

re.sub(pattern, repl, string, count=0, flags=0)  其中三个必选参数:pattern, repl, string   两个可选参数:count, flags

 

以上是关于Python:re.sub()实现字符串替换的主要内容,如果未能解决你的问题,请参考以下文章

带有标志的 Python re.sub 不会替换所有出现

Python re.sub 替换 html 属性

Python - re.sub 返回模式而不是替换

Python re.sub 字符串上的多行

python re.sub 带有要查找的单词列表

python re.sub 组:\number 之后的数字