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