更新时间:2023年02月28日11时30分 来源:传智教育 浏览次数:
您可以使用Python内置的字符串方法或正则表达式来查询和替换一个文本字符串。下面是一些示例代码:
string = "Hello, world!" substring = "world" replacement = "Python" new_string = string.replace(substring, replacement) print(new_string) # 输出:Hello, Python!
在上面的代码中,我们使用了字符串的 replace() 方法,将子字符串 "world" 替换为 "Python"。
import re string = "Hello, world!" pattern = r"world" replacement = "Python" new_string = re.sub(pattern, replacement, string) print(new_string) # 输出:Hello, Python!
在上面的代码中,我们使用了 re 模块的 sub() 函数,将模式字符串 "world" 替换为 "Python"。该函数会搜索整个字符串并将所有匹配的子字符串替换为指定的字符串。