用法:
str.strip([chars])
返回删除了前导和尾随字符的字符串的副本。
chars
参数是一个字符串,指定要删除的字符集。如果省略或None
,则chars
参数默认为删除空格。chars
参数不是前缀或后缀;相反,它的值的所有组合都被剥离:>>> ' spacious '.strip() 'spacious' >>> 'www.example.com'.strip('cmowz.') 'example'
最外层的前导和尾随
chars
参数值将从字符串中删除。字符从前端删除,直到到达chars
中的字符集中不包含的字符串字符。类似的动作发生在尾端。例如:>>> comment_string = '#....... Section 3.2.1 Issue #32 .......' >>> comment_string.strip('.#! ') 'Section 3.2.1 Issue #32'
相关用法
- Python str.splitlines用法及代码示例
- Python str.split用法及代码示例
- Python str.isidentifier用法及代码示例
- Python str.expandtabs用法及代码示例
- Python str.isupper用法及代码示例
- Python str.title用法及代码示例
- Python str.rstrip用法及代码示例
- Python str.lstrip用法及代码示例
- Python str.removeprefix用法及代码示例
- Python str.zfill用法及代码示例
- Python str.format_map用法及代码示例
- Python str.removesuffix用法及代码示例
- Python str() vs repr()用法及代码示例
- Python string转integer用法及代码示例
- Python string strip()用法及代码示例
- Python string.octdigits用法及代码示例
- Python string.whitespace用法及代码示例
- Python strip()用法及代码示例
- Python str()用法及代码示例
- Python string capitalize()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 str.strip。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。