共计 531 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 replace 函数来替换字符串中的子字符串。
replace 函数的使用方式是:str.replace(old, new, count)
- str:要进行替换操作的字符串。
- old:要被替换的子字符串。
- new:替换后的新子字符串。
- count(可选):指定替换的次数,如果不指定则默认替换所有匹配的子字符串。
下面是一个使用 replace 函数的示例:
str = "Hello, World!"
new_str = str.replace("Hello", "Hi")
print(new_str) # 输出: Hi, World!
在上面的示例中,我们将字符串中的 "Hello" 替换为 "Hi",并将结果赋给变量 new_str。最后输出的结果是 "Hi, World!"。
另外,replace 函数还可以用来删除指定子字符串。只需要将 new_str 参数指定为空字符串即可。
str = "Hello, World!"
new_str = str.replace("Hello", "")
print(new_str) # 输出: , World!
在上面的示例中,我们将字符串中的 "Hello" 替换为空字符串,即删除了 "Hello" 这个子字符串。最后输出的结果是 ", World!"。
丸趣 TV 网 – 提供最优质的资源集合!
正文完