在Python中,sub函数是re模块中的一个函数,用于替换字符串中的匹配项。
sub函数的语法如下:
re.sub(pattern, repl, string, count=0, flags=0)
参数说明:
下面是一个简单的例子,演示如何使用sub函数:
import re
string = "python is great"
pattern = "python"
replacement = "Java"
new_string = re.sub(pattern, replacement, string)
print(new_string)
输出结果为:Java is great
在上面的例子中,我们使用sub函数将字符串中的"python"替换为"Java"。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: python怎么制作词云图