美文网首页
Python3 strip()方法

Python3 strip()方法

作者: scarleast | 来源:发表于2018-11-29 15:43 被阅读0次

前言

我们在处理字符串的时候,总会遇到这种问题,一个字符串,中间是我们想要的内容,两边会多出来一些内容确定、数量不定字符,比如这样:

str_sample = "-* This is a sample!\n###"

我希望去掉这个字符串两头的“-”、“*”、“\n”、“#”以及“ ”,只想保留"This is a sample!"应该怎么处理呢?

语法

str.strip([chars])
官方解释:

Return a copy of the string with the leading and trailing characters removed. The chars argument is a string specifying the set of characters to be removed. If omitted or None, the chars argument defaults to removing whitespace. The chars argument is not a prefix or suffix; rather, all combinations of its values are stripped:

  • 返回字符串的一个副本,去掉前面和后面的字符。chars参数是一个字符串,指定要删除的字符集。如果省略或没有,chars参数默认为删除空格。chars参数不是前缀或后缀;相反,它的值的所有组合都被剥离。

参数与示例

  1. 参数可以为空,表示去掉头尾的空格。
>>> '   spacious   '.strip()
'spacious'
  1. 当我们想去除的字符出现了多次,参数中只需要输入一次我们想去除的字符即可。
>>> "###crystal".strip("#")
'crystal'
>>> 

3.当头尾想去除的内容不同时,只需要分别把我们希望去除的字符一次添加到参数中即可。

>>> 'www.example.com'.strip('cmowz.')
'example'
  • 参数为“cmowz.”。我们发现,这个'www.example.com'字符串,头的"w"".",尾的"c""o""m""."都被去除了,且我们输入参数时,不需要按照顺序输入。

最后

前言中的str_sample = "-* This is a sample!\n###",我们希望提取"This is a sample!",应该怎么操作呢?

>>> "-* This is a sample!\n###".strip("-* \n#")
'This is a sample!'

相关文章

  • Python3 strip()方法

    前言 我们在处理字符串的时候,总会遇到这种问题,一个字符串,中间是我们想要的内容,两边会多出来一些内容确定、数量不...

  • strip()方法

    Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列。 注意:该方法只能删除开头...

  • Python strip()方法

    描述 Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)。 语法 strip()方法语法...

  • python之函数常用小技巧

    1. 字符串处理方法:strip()函数 1.1 原型及使用方法 1.2 strip()函数的常用扩展 2. ra...

  • Python strip()、split()和rstrip()方

    1. Python strip() 语法描述: Python strip() 方法用于移除字符串头尾指定的字符(默...

  • Python strip()方法

    描述 Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列。 注意:该方法只能删...

  • Python strip()方法

    strip()方法用于移除字符串头尾指定的字符(默认为空格或换行符)或字符序列 注意:该方法只能删除开头或者是结尾...

  • 3-3如何去掉字符串中不需要的字符

    使用字符串strip()方法 strip()方法可以用来去掉字符串开始和结尾的空白,lstrip()只去掉左边的,...

  • 字符串的清除方法

    字符串的清除方法有:strip(),lstrip(),rstrip(), 1.strip():清除字符串两边 ...

  • Python_去除字符串中的空格

    作者:Gakki 01. strip() 方法 strip() :用于移除字符串头尾指定的字符(默认为空格)或字符...

网友评论

      本文标题:Python3 strip()方法

      本文链接:https://www.haomeiwen.com/subject/cfkfcqtx.html