mystr = 'hello world and gzy and java and python'
# replace 返回一个新对象,原字符串不变,字符串为不可变类型
str1 = mystr.replace('and', 'he')
str2 = mystr.replace('and', 'he', 1)
str3 = mystr.replace('and', 'he', 10)
print(str1)
print(str2)
print(str3)
# split 返回一个列表
list1 = mystr.split(' and ')
list2 = mystr.split('and', 2)
print(list1)
print(list2)
# 填充符.join 合并列表返回一个拼接的字符串
str4 = '...'.join(list1)
print(str4)
相关文章
- 11-17Python中join 和 split详解(推荐)
- 11-17python – 删除字符串中重复字符(单词)的最佳方法?
- 11-17Python:字符串中引用外部变量的3种方法
- 11-17常用处理数组、字符串API → forEach every some sort map filter slice split indexOf concat substring substr splice join toString replace
- 11-17python threading queue模块中join setDaemon及task_done的使用方法及示例
- 11-17python中修改字符串的几种方法
- 11-17什么是在python中确定unicode字符串的解码方法的最佳方法
- 11-17Python中的字符串方法
- 11-17python join 和 split的常用使用方法
- 11-17python中join和split函数