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