如何在Python中从字符串末尾删除子字符串?
如果要从字符串末尾删除子字符串,则应首先检查字符串是否以该子字符串结尾。如果是这样,则对字符串进行切片,仅保留不带子字符串的部分。例如,
def rchop(string, ending):if string.endswith(ending):
return string[:-len(ending)]
return string
chopped_str = rchop('Hello world', 'orld')
print chopped_str
这将给出输出:
Hello w
如果速度不重要,也可以在此处使用正则表达式。例如,
>>> import re>>> re.sub('orld$', '', 'Hello world')
Hello w
以上是 如何在Python中从字符串末尾删除子字符串? 的全部内容, 来源链接: utcz.com/z/343610.html