p y t hon字符替换
时间: 2023-11-27 11:49:20 浏览: 74
Python基础之字符串操作常用函数集合
在 Python 中可以使用字符串的 `replace()` 方法来进行字符替换。它的基本语法是:
```python
str.replace(old, new[, count])
```
其中,`str` 是要进行替换的字符串,`old` 是需要被替换的字符或子串,`new` 是用于替换的新字符或子串,`count` 是可选参数,表示替换的次数。如果不指定 `count`,则默认是全部替换。
例如,把字符串 `"hello world"` 中的所有 `o` 替换成 `i`,可以这样写:
```python
str = "hello world"
new_str = str.replace("o", "i")
print(new_str) # 输出 "helli wirld"
```
如果只想替换前两个 `o`,可以这样写:
```python
str = "hello world"
new_str = str.replace("o", "i", 2)
print(new_str) # 输出 "helli world"
```
另外,还可以使用正则表达式来进行更加复杂的字符替换。具体可以参考 Python 的 `re` 模块。
阅读全文