replace方法
replace(old_value, new_value)
替换文本。
def replace(self, old_value, new_value):
...
范围 | 类型 | 描述 |
---|---|---|
old_value | str | 旧文。 |
new_value | str | 新的文本。 |
replace(index, count, text)
替换文本。
def replace(self, index, count, text):
...
范围 | 类型 | 描述 |
---|---|---|
index | int | 起始索引。 |
count | int | 字符数。 |
text | str | 文本。 |