• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

python strip()函数 介绍

python 搞代码 4年前 (2022-01-08) 13次浏览 已收录 0个评论

Python strip() 方法用于移除字符串头尾指定的字符,需要的朋友可以参考下

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

语法
strip()方法语法:
str.strip([chars]);

参数
chars — 移除字符串头尾指定的字符。
返回值
返回移除字符串头尾指定的字符生成的新字符串。

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

 #!/usr/bin/python # -*- coding: UTF-8 -*- str = "0000000   gaodaima.com 0000000" print(str.strip( '0' )) # 去除首尾字符 0 str2 = "  gaodaima.com   "  # 去除首尾空格 print(str2.strip())

以上实例输出结果如下:

     gaodaima.com 
gaodaima.com

Python3 replace()方法

描述
replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。

语法
replace()方法语法:

str.replace(old, new[, max])
参数
old — 将被替换的子字符串。
new — 新字符串,用于替换old子字符串。
max — 可选字符串, 替换不超过 max 次
返回值
返回字符串中的 old(旧字符串) 替换成 new(新字符串)后生成的新字符串,如果指定第三个参数max,则替换不超过 max 次。

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

 #!/usr/bin/python3 str = "欢迎访问<a href="http://www.gaodaima.com">gaodaima搞代码网</a>www.gaodaima.com" <mark style="color:transparent">来源gaodaimacom搞#^代%!码&网</mark>print ("<a href="http://www.gaodaima.com">gaodaima搞代码网</a>旧地址:", str) print ("<a href="http://www.gaodaima.com">gaodaima搞代码网</a>新地址:", str.replace("gaodaima.com", "jbzj.com")) str = "this is string example....wow!!!" print (str.replace("is", "was", 3))

以上实例输出结果如下:

gaodaima搞代码网旧地址: http://www.jbzj.com
gaodaima搞代码网新地址: http://www.gaodaima.com
thwas was string example….wow!!!

函数原型

声明:s为字符串,rm为要删除的字符序列

s.strip(rm) 删除s字符串中开头、结尾处,位于 rm删除序列的字符
s.lstrip(rm) 删除s字符串中开头处,位于 rm删除序列的字符
s.rstrip(rm) 删除s字符串中结尾处,位于 rm删除序列的字符

注意:

1. 当rm为空时,默认删除空白符(包括’\n’, ‘\r’, ‘\t’, ‘ ‘)

例如:

 >>> a = '   123' >>> a.strip() '123' >>> a='\t\tabc' 'abc' >>> a = 'sdff\r\n' >>> a.strip() 'sdff'

2.这里的rm删除序列是只要边(开头或结尾)上的字符在删除序列内,就删除掉。

例如 :

 >>> a = '123abc' >>> a.strip('21') '3abc'  结果是一样的 >>> a.strip('12') '3abc'

文章就到这了,需要的朋友可以参考一下

以上就是python strip()函数 介绍的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:python strip()函数 介绍

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址