美文网首页
Python strip()方法

Python strip()方法

作者: 学习路慢慢 | 来源:发表于2020-03-22 23:18 被阅读0次

描述

Python strip() 方法用于移除字符串头尾指定的字符(默认为空格)或字符序列。

注意:该方法只能删除开头或是结尾的字符,不能删除中间部分的字符。

语法

strip()方法语法:

str.strip([chars]);

参数

  • chars -- 移除字符串头尾指定的字符序列。

返回值

返回移除字符串头尾指定的字符序列生成的新字符串。

实例

以下实例展示了 strip() 函数的使用方法:

实例(Python 3.0+)

#!/usr/bin/python3
str = "*****this is **string** example....wow!!!*****"
print (str.strip( '*' ))  # 指定字符串 *

以上实例输出结果如下:
this is **string** example....wow!!!
从结果上看,可以注意到中间部分的字符并未删除。

以下实例演示了只要头尾包含有指定字符序列中的字符就删除:

实例(Python 3.0+)

#!/usr/bin/python3 
str = "123abcrunoob321"
print (str.strip( '12' ))  # 字符序列为 12

以上实例输出结果如下:
3abcrunoob3

相关文章

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

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

  • Python strip()方法

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

  • Python strip()方法

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

  • Python strip()方法

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

  • 3行python代码实现假聊天机器人(慎入:这是假机器人!!!)

    在Python Console输入以下代码: 一个例子: 学习时间到了:Python strip()方法 Pyth...

  • Python相关文章索引(13)

    基本常识 Python-去除字符串中不想要的字符 Python split()方法 strip()默认去除的空白字...

  • Python3 strip()方法

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

  • strip()方法

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

  • Python

    python string strip, removes all whitespace at beginning ...

  • python strip()

    声明:s为字符串,rm为要删除的字符序列 s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的...

网友评论

      本文标题:Python strip()方法

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