string.replace()在python 3.x上已弃用。新的方法是什么?


当前回答

试试这个:

mystring = "This Is A String"
print(mystring.replace("String","Text"))

其他回答

供您参考,当将某些字符附加到字符串中任意位置固定的单词后(例如,通过添加后缀-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'

试试这个:

mystring = "This Is A String"
print(mystring.replace("String","Text"))

如2。X,使用str.replace()。

例子:

>>> 'Hello world'.replace('world', 'Guido')
'Hello Guido'

python 3中的replace()方法被简单地用于:

a = "This is the island of istanbul"
print (a.replace("is" , "was" , 3))

#3 is the maximum replacement that can be done in the string#

>>> Thwas was the wasland of istanbul

# Last substring 'is' in istanbul is not replaced by was because maximum of 3 has already been reached

Replace()是python3中<class 'str'>的一个方法:

>>> 'hello, world'.replace(',', ':')
'hello: world'