String.replace () yöntemi python 3.x'te kullanımdan kaldırılmıştır. Bunu yapmanın yeni yolu nedir?
String.replace () yöntemi python 3.x'te kullanımdan kaldırılmıştır. Bunu yapmanın yeni yolu nedir?
Yanıtlar:
2.x'te olduğu gibi kullanın str.replace()
.
Misal:
>>> 'Hello world'.replace('world', 'Guido')
'Hello Guido'
re.sub()
,.
string
işlevler kullanımdan kaldırıldı. str
yöntemleri değildir.
'foo'.replace(...)
Python 3'teki replace () yöntemi basitçe aşağıdakiler tarafından kullanılır:
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
Sen kullanabilirsiniz str.replace () bir şekilde zincirinin str.replace () . Gibi bir dizeniz olduğunu 'Testing PRI/Sec (#434242332;PP:432:133423846,335)'
ve tüm '#',':',';','/'
işareti değiştirmek istediğinizi düşünün '-'
. Bu şekilde değiştirebilirsiniz (normal yolla),
>>> str = 'Testing PRI/Sec (#434242332;PP:432:133423846,335)'
>>> str = str.replace('#', '-')
>>> str = str.replace(':', '-')
>>> str = str.replace(';', '-')
>>> str = str.replace('/', '-')
>>> str
'Testing PRI-Sec (-434242332-PP-432-133423846,335)'
veya bu şekilde ( str.replace () zinciri )
>>> str = 'Testing PRI/Sec (#434242332;PP:432:133423846,335)'.replace('#', '-').replace(':', '-').replace(';', '-').replace('/', '-')
>>> str
'Testing PRI-Sec (-434242332-PP-432-133423846,335)'
Zaman Bilginize, dize içinde keyfi bir, sabit konumlu kelimeye bazı karakterler ekleyerek (örneğin ekini ekleyerek zarf bir sıfat değişen -ly ) kullanarak, okunabilirlik için satırın sonunda eki koyabilirsiniz. Bunu yapmak için split()
içinde kullanın replace()
:
s="The dog is large small"
ss=s.replace(s.split()[3],s.split()[3]+'ly')
ss
'The dog is largely small'
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')