Python 的 str.rstrip(~)
方法返回刪除了指定尾隨字符的字符串。默認是刪除所有尾隨空格(即右側的空格)。
參數
1.chars
| string
| optional
指定要從字符串右側刪除的尾隨字符組合的字符串。默認為空白。
返回值
刪除了指定尾隨字符的字符串。
例子
基本用法
要從 "Dog "
中刪除所有尾隨空格:
x = "Dog "
x.rstrip()
'Dog'
字符參數
要從 "SkyTowner "
中刪除尾隨 ' re'
的所有組合:
y = "SkyTowner "
y.rstrip(' re')
'SkyTown'
我們從字符串末尾刪除 ' '
、 'r'
和 'e'
的所有組合,這給我們返回值 'SkyTown'
。
區分大小寫
要從 "SkyTowner" 中刪除所有尾隨 'R'
:
z = "SkyTowner"
z.rstrip('R')
'SkyTowner'
請注意,沒有刪除尾隨字符,因為字符串的最右側存在不匹配,其中 'R'
的 char
參數與 'r'
不匹配。如圖所示,rstrip(~)
方法區分大小寫。
相關用法
- Python String rstrip()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String rsplit方法用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
- Python String replace()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String rjust()用法及代碼示例
- Python String rindex方法用法及代碼示例
- Python String rfind方法用法及代碼示例
- Python String replace方法用法及代碼示例
- Python String rfind()用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String zfill方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String startswith()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | rstrip method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。