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