Python str.strip()函数

下面的英文说明是官方给出:

string.strip(s[, chars])

Return a copy of the string with leadingand trailing characters removed. If chars is omitted orNone, whitespace characters are removed. If given and not None, chars must be astring; the characters in the string will be stripped from the both ends of thestring this method is called on.

如果chars被忽略或者是None,空白字符串被移除。如果chars不是None并存在,在字符串的头尾的chars都将被移除。

Changed in version 2.2.3: The charsparameter was added. The chars parameter cannot be passed in earlier 2.2versions.

下面例子中字符以tab抬头,以空格结尾。

line=‘   hello happybks! ‘

print ‘*‘+line.strip()+‘*‘

print ‘*‘+line.strip(‘ ‘)+‘*‘

print ‘*‘+line.strip(‘    ‘)+‘*‘

print ‘*‘+line.strip(‘h‘)+‘*‘

输出结果如下:

*hello happybks!*

*hello happybks!*

*hello happybks!*

*   hello happybks! *

可以发现不传参数,则会把字符串开头和结尾的空格、tab全部删除,中间的空格和tab不会

传空格或者tab参数,子串传仍然会把字符串开头和结尾的无论空格还是tab都一并删除

当传入的参数是其他参数时,字符串开头结尾不是该参数字符串,则没有任何效果

但是如果字符串的开头和结尾是其他字符串,并且传入的参数也是这个字符串,那么会将字符串开头和结尾的参数串全部清掉,无论有多少个。但是区分大小写。

例如,下面的例子:

line2=‘haaaaahhaaaaaaahHhhh‘

print ‘*‘+line2.strip(‘h‘)+‘*‘

结果输出:

*aaaaahhaaaaaaahH*

时间: 2024-10-10 01:11:39

Python str.strip()函数的相关文章

Python中strip()函数

在python API中这样解释strip()函数: 声明:s为字符串,rm为要删除的字符序列 s.strip(rm)        删除s字符串中开头.结尾处,位于 rm删除序列的字符 s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符 s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符 注意: 1. 当rm为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ') 例如: >>> a=' Hello

Python:strip 函数的陷阱

S.strip(chars=None) strip 函数用于去除字符串首尾的空格,当 chars 不为 None 时,则删除字符串首尾的 chars 中的字符. 当 chars=None 时,去除首尾空格,没啥好说的,我们来看 chars 不为 None 时的情况. str = 'abc123abc' print(str.strip('a')) # bc123abc print(str.strip('abc')) # 123 结果跟预期的一样,我们再看下面的例子: print(str.strip

python中strip()函数的理解

1.strip()函数 函数原型 声明:s为字符串,rm为要删除的字符序列 s.strip(rm) :删除s字符串中开头.结尾处,位于 rm删除序列的字符 s.lstrip(rm) :删除s字符串中开头处,位于 rm删除序列的字符 s.rstrip(rm) :删除s字符串中结尾处,位于 rm删除序列的字符 现在来分析s.strip(rm)这个函数. 现在假设s='abcd' 则 s.strip('bd')----->'abc' 而s.strip('ba')和s.strip('ab')的结果是一样

python str.translate()函数用法

Python translate()方法 描述 Python translate() 方法根据参数table给出的表(包含 256 个字符)转换字符串的字符, 要过滤掉的字符放到 del 参数中. 语法 translate()方法语法: str.translate(table[, deletechars]); 参数 table -- 翻译表,翻译表是通过maketrans方法转换而来. deletechars -- 字符串中要过滤的字符列表. 返回值 返回翻译后的字符串. 实例 以下实例展示了

python 中join()函数strip() 函数和 split() 函数的详解及实例

1.join()函数 Python中有join()和os.path.join()两个函数,具体作用如下: join():                连接字符串数组.将字符串.元组.列表中的元素以指定的字符(分隔符)连接生成一个新的字符串 语法:  'sep'.join(seq) 参数说明sep:分隔符.可以为空seq:要连接的元素序列.字符串.元组.字典上面的语法即:以sep作为分隔符,将seq所有的元素合并成一个新的字符串 返回值:返回一个以分隔符sep连接各个元素后生成的字符串 os.p

python strip()函数和Split函数的用法总结

strip函数原型 声明:s为字符串,rm为要删除的字符序列 s.strip(rm)        删除s字符串中开头.结尾处,位于 rm删除序列的字符 s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符 s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符 注意: 1. 当rm为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ') 例如: 2.这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删

python strip()函数介绍

函数原型 声明:str为字符串,s为要删除的字符序列 str.strip(s)        删除str字符串中开头.结尾处,位于 s删除序列的字符 str.lstrip(s)       删除str字符串中开头处,位于 s删除序列的字符 str.rstrip(s)      删除str字符串中结尾处,位于 s删除序列的字符 注意: 当s为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ') 1 >>> str = "abaaba" 2 >

Python之strip与split函数

一.strip函数原型 声明:s为字符串,rm为要删除的字符序列 s.strip(rm)        删除s字符串中开头.结尾处,位于rm删除序列的字符 s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符 s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符 如下: >>> a='hheloooo goooodbyyyye' >>> a.strip('helo ') 'goooodbyyyy' >&

python strip()函数

转发:jihite-博客园-python strip()函数 函数原型 声明:s为字符串,rm为要删除的字符序列 s.strip(rm)        删除s字符串中开头.结尾处,位于 rm删除序列的字符 s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符 s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符 注意: 1. 当rm为空时,默认删除空白符(包括'\n', '\r',  '\t',  ' ') 例如: 2.这里的rm删除