replace用法示例
时间: 2023-08-12 22:09:21 浏览: 86
Python中replace方法实例分析
5星 · 资源好评率100%
当我们谈到 "replace" 时,通常是指在字符串中替换特定的字符或子字符串。这是一个常见的字符串操作,可以使用多种编程语言实现。以下是一个示例,展示了如何在Python中使用 "replace" 进行字符串替换:
```python
# 将字符串中的某个字符替换为另一个字符
string = "Hello, World!"
new_string = string.replace("o", "@")
print(new_string) # 输出结果为 "Hell@, W@rld!"
# 将字符串中的某个子字符串替换为另一个子字符串
string = "I like cats, but I prefer dogs."
new_string = string.replace("cats", "dogs")
print(new_string) # 输出结果为 "I like dogs, but I prefer dogs."
```
在上面的示例中,我们首先将字符串中的字符 "o" 替换为 "@",然后将字符串中的子字符串 "cats" 替换为 "dogs"。注意,这些替换操作是基于字符串的不可变性进行的,因此 `replace` 方法返回一个新的字符串,而不会修改原始字符串。
阅读全文