Python常用方法记录——replace()、split()

1.Python replace()方法

语法:
str.replace(old, new[, max])

作用:
Python replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串)。
如果指定第三个参数max,则替换不超过 max 次;如果不指定max,则将第一个参数(old)全部替换为第二个参数(new)。

实例(Python3):
input:
# _*_ coding:utf-8 _*_

str = "this is string example....wow!!! this is really string";
print (str.replace("is", "was"))
print (str.replace("is", "was", 3))

output:

thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string


2.Python split()方法

语法:
str.split(str="", num=string.count(str))

作用:
Python split()通过指定分隔符(str)对字符串进行切片,返回分割后的字符串列表。
*分隔符(str):默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
*分割次数(num):如果参数num 有指定值,则仅分隔 num 个子字符串(即num为可选参数)


实例:
input:
a = 'name:haha,age:20|name:python,age:30|name:fef,age:55'

print a.split('|')


output:
['name:haha,age:20', 'name:python,age:30', 'name:fef,age:55']


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值