Python模块re中有re.sub()方法,该方法有助于搜索模式并替换为新的子字符串。如果找不到该模式,则返回的字符串不变。
re.sub()的语法
re.sub(pattern, repl, string):
例如,在下面的代码中,我们搜索“印度”,并将其替换为字符串“ TP是印度最受欢迎的Tutorials网站”中的“世界”。
result=re.sub(r'India','the World','TP is the most popular Tutorials site of India') print result
输出结果
TP is the most popular Tutorials site of the World