首页 >后端开发 >Python教程 >如何从Python中的字符串中删除后缀?

如何从Python中的字符串中删除后缀?

Linda Hamilton
Linda Hamilton原创
2024-12-06 13:45:13642浏览

How to Remove a Suffix from a String in Python?

如何从字符串末尾删除子字符串(删除后缀)

从字符串末尾删除子字符串,称为后缀,有多种方法可用。

使用removeprefix和删除 Python 3.9 的后缀:

url = 'abcdc.com'
url.removesuffix('.com')  # Returns 'abcdc'

对于 Python 3.8 及更早版本使用结尾和切片:

if url.endswith('.com'):
    url = url[:-4]  # Remove '.com' suffix

使用正则表达式:

import re
url = re.sub('\.com$', '', url)  # Remove '.com' suffix

注意strip() 方法不会删除整个子字符串,而只会删除参数中指定的单个字符。

以上是如何从Python中的字符串中删除后缀?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn