Python 字符串替换
时间: 2023-07-03 12:06:19 浏览: 93
在 中,字符串替换可以使用 `replace()` 方法。该方法接受两个参数,第一个参数是要替换的子字符串,第二个参数是新的字符串。例如:
```python
original_string = "Hello World"
new_string = original_string.replace("World", "Python")
print(new_string)
```
输出结果为:
```
Hello Python
```
如果要替换多个子字符串,可以使用正则表达式和 `re` 模块。例如:
```python
import re
original_string = "Hello World"
new_string = re.sub("World|Python", "Python", original_string)
print(new_string)
```
输出结果为:
```
Hello Python
```
其中,正则表达式 `"World|Python"` 表示匹配字符串中的 "World" 或者 "Python",`re.sub()` 方法将匹配到的字符串用新的字符串 "Python" 替换。
阅读全文