string.replace()在python 3.x上已弃用。新的方法是什么?
当前回答
Replace()是python3中<class 'str'>的一个方法:
>>> 'hello, world'.replace(',', ':')
'hello: world'
其他回答
供您参考,当将某些字符附加到字符串中任意位置固定的单词后(例如,通过添加后缀-ly将形容词更改为副词),您可以将后缀放在行尾以提高可读性。要做到这一点,在replace()中使用split():
s="The dog is large small"
ss=s.replace(s.split()[3],s.split()[3]+'ly')
ss
'The dog is largely small'
简单替换:. Replace (old, new, count)。
text = "Apples taste Good."
print(text.replace('Apples', 'Bananas')) # use .replace() on a variable
Bananas taste Good. <---- Output
print("Have a Bad Day!".replace("Bad","Good")) # Use .replace() on a string
Have a Good Day! <----- Output
print("Mom is happy!".replace("Mom","Dad").replace("happy","angry")) #Use many times
Dad is angry! <----- Output
如2。X,使用str.replace()。
例子:
>>> 'Hello world'.replace('world', 'Guido')
'Hello Guido'
ss = s.replace(s.split()[1], +s.split()[1] + 'gy')
# should have no plus after the comma --i.e.,
ss = s.replace(s.split()[1], s.split()[1] + 'gy')
Python 3的str.replace的官方文档
Python 3的str.replace
Str.replace (old, new[, count]) 返回字符串的副本,所有出现的子字符串old都替换为new。如果给出了可选参数count,则只替换第一次出现的计数。
对应的VSCode的语法注意如下:
str.replace(self: str, old, new, count) -> str.replace(self: str, old, new, count
两种方法使用str.replace
方法1:使用内置str的replace -> str.replace(strVariable, old, new[, count])
replacedStr1 = str.replace(originStr, "from", "to")
方法二:使用str变量的replace -> strVariable。替换(old, new[, count])
replacedStr2 = originStr.replace("from", "to")
完整的演示
代码:
originStr = "Hello world"
# Use case 1: use builtin str's replace -> str.replace(strVariable, old, new[, count])
replacedStr1 = str.replace(originStr, "world", "Crifan Li")
print("case 1: %s -> %s" % (originStr, replacedStr1))
# Use case 2: use str variable's replace -> strVariable.replace(old, new[, count])
replacedStr2 = originStr.replace("world", "Crifan Li")
print("case 2: %s -> %s" % (originStr, replacedStr2))
输出:
case 1: Hello world -> Hello Crifan Li
case 2: Hello world -> Hello Crifan Li
截图:
My related (Chinese) post: str.replace String in Python 3
推荐文章
- python中的assertEquals和assertEqual
- 如何保持Python打印不添加换行符或空格?
- 为什么Python的无穷散列中有π的数字?
- Python 3.7数据类中的类继承
- 如何在PyTorch中初始化权重?
- 计数唯一的值在一列熊猫数据框架像在Qlik?
- 如何在Typescript中解析JSON字符串
- 使用Pandas将列转换为行
- 从matplotlib中的颜色映射中获取单个颜色
- 将Pandas或Numpy Nan替换为None以用于MysqlDB
- 使用pandas对同一列进行多个聚合
- 使用Python解析HTML
- 如何分割逗号分隔的字符串?
- Java字符串—查看字符串是否只包含数字而不包含字母
- django MultiValueDictKeyError错误,我如何处理它