在 Python 中,您可以使用字符串的 replace()
方法来简洁地更改特定的子字符串。这个方法会返回一个新的字符串,其中所有匹配的子字符串都被替换为指定的新子字符串。
replace()
方法以下是 replace()
方法的基本用法:
original_string = "Hello, world! Welcome to the world of Python."
# 将 "world" 替换为 "universe"
new_string = original_string.replace("world", "universe")
print(new_string)
输出:
Hello, universe! Welcome to the universe of Python.
str.replace(old, new[, count])
old
: 要被替换的子字符串。new
: 用于替换的子字符串。count
(可选): 指定要替换的次数。如果省略,则替换所有匹配的子字符串。text = "apple banana apple orange"
new_text = text.replace("apple", "kiwi")
print(new_text) # 输出: kiwi banana kiwi orange
text = "apple banana apple orange"
new_text = text.replace("apple", "kiwi", 1) # 只替换第一个 "apple"
print(new_text) # 输出: kiwi banana apple orange
如果您需要更复杂的替换(例如,使用模式匹配),可以使用 re
模块中的 sub()
函数:
import re
text = "apple banana apple orange"
# 使用正则表达式替换所有 "apple" 或 "banana"
new_text = re.sub(r'apple|banana', 'kiwi', text)
print(new_text) # 输出: kiwi kiwi kiwi orange
str.replace()
方法可以简洁地替换特定的子字符串。re.sub()
函数。领取专属 10元无门槛券
手把手带您无忧上云