欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python字符串常用方法

程序员文章站 2022-06-03 11:59:08
1、 isalnum() :判断字符串所有的字符都是字母或者数字。返回true和false In [1]: str1='jiangwei520' In [2]:...

1、find(sub[, start[, end]])

在索引startend之间查找字符串sub
​找到,则返回最左端的索引值,未找到,则返回-1
startend都可省略,省略start说明从字符串开头找
省略end说明查找到字符串结尾,全部省略则查找全部字符串

source_str = "there is a string accessing example"
print(source_str.find('r'))
>>> 3
 

2、count(sub, start, end)

返回字符串substartend之间出现的次数

source_str = "there is a string accessing example"
print(source_str.count('e'))
>>> 5
 

3、replace(old, new, count)

old代表需要替换的字符,new代表将要替代的字符,count代表替换的次数(省略则表示全部替换)

source_str = "there is a string accessing example"
print(source_str.replace('i', 'i', 1))
>>> there is a string accessing example # 把小写的i替换成了大写的i
 

4、split(sep, maxsplit)

sep为分隔符切片,如果maxsplit有指定值,则仅分割maxsplit个字符串
分割后原来的str类型将转换成list类型

source_str = "there is a string accessing example"
print(source_str.split(' ', 3))
>>> ['there', 'is', 'a', 'string accessing example'] # 这里指定maxsplit=3,代表只分割前3个
 

5、startswith(prefix, start, end)

判断字符串是否是以prefix开头,startend代表从哪个下标开始,哪个下标结束

source_str = "there is a string accessing example"
print(source_str.startswith('there', 0, 9))
>>> true
 

6、endswith(suffix, start, end)

判断字符串是否以suffix结束,如果是返回true,否则返回false

source_str = "there is a string accessing example"
print(source_str.endswith('example'))
>>> true
 

7、lower

将所有大写字符转换成小写

8、upper

将所有小写字符转换成大写 

9、join

将列表拼接成字符串

list1 = ['ab', 'cd', 'ef']
print(" ".join(list1))
>>> ab cd ef
 

10、切片反转

list2 = "hello"
print(list2[::-1])
>>> olleh

到此这篇关于python字符串常用方法的文章就介绍到这了,更多相关python字符串内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!