如何從字串末尾刪除子字串(刪除後綴)
從字串末尾刪除子字串,稱為後綴,有多種方法可用。
使用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中文網其他相關文章!