Python 的 str.strip(~)
方法返回刪除了指定前導和尾隨字符的字符串。默認是刪除所有前導和尾隨空格(即左側和右側的空格)。
參數
1.chars
| string
| optional
指定要刪除的字符組合的字符串。默認為空白。
返回值
刪除了指定前導和尾隨字符的字符串。
例子
基本用法
要從 " Dog "
中刪除所有前導和尾隨空格:
x = " Dog "
x.strip()
'Dog'
字符參數
要從 " SkyTowner "
中刪除 ' reS'
的所有前導和尾隨組合:
y = " SkyTowner "
y.strip(' reS')
'kyTown'
請注意,源字符串中的所有前導和尾隨 ' '
、 'r'
、 'e'
、 'S'
都將被刪除。第一個不匹配發生在字符串開頭的'k'
和字符串末尾的'n'
。
區分大小寫
要從 "SkyTowner"
中刪除 'rs'
的所有前導和尾隨組合:
z = "SkyTowner"
z.strip('rs')
'SkyTowne'
請注意,刪除字符區分大小寫,因此不會刪除前導'S'
。
相關用法
- Python String strip()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String startswith方法用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String split方法用法及代碼示例
- Python String splitlines方法用法及代碼示例
- Python String split()用法及代碼示例
- Python String swapcase()用法及代碼示例
- Python String swapcase方法用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String zfill方法用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | strip method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。