在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"。