教育行业A股IPO第一股(股票代码 003032)

全国咨询/投诉热线:400-618-4000

如何用Python进行查询和替换一个文本字符串?

更新时间:2023年02月28日11时30分 来源:传智教育 浏览次数:

好口碑IT培训

  您可以使用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"。该函数会搜索整个字符串并将所有匹配的子字符串替换为指定的字符串。

0 分享到:
和我们在线交谈!