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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。