码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的操作

时间:2019-09-12 23:52:19      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:索引   判断字符串   partition   spl   例题   pre   isa   hide   ide   

1 find (rfind) 检测字符串str是否在mystr中,如果是返回开始索引,否则返回-1
mystr.find(str,start = 0, end = len(mystr))

2 index 与find方法一样,但找不到str会报一个异常

3 count 返回str在start和end之间 在mystr里面出现的次数
mystr.count(str, start=0, end = len(mystr))

4 replace 把mystr中str1替换成str2,如果count指定,则替换次数不超过coount次数
mystr = ‘hello word ha ha‘
print(mystr.replace(‘str1‘, ‘str2‘, mystr.count(str1)))

5 strip (rstrip,lstrip) 删除mystr两边的空白字符, mystr.strip(‘,‘) 去除指定字符

6 partition (rpartition) 把mystr以str分割成三部分 (返回的是元组)

7 splitlines 按行分割字符串

8 isalpha mystr.isalpha()判断字符串是否全部是字母

9 isdigit mystr.isdigit()判断字符串是否全是数字

10 isalnum mystr.isalnum()判断是否是字母和数字

11 isspace 判断是否全是空格

12 join 拼接列表里的字符串 或字符串的拼接 (容器类型的字符串都可以拼接)
用法:‘_‘.join(list) (不懂再看例题)
例1:
技术图片
str =  
list = [a,b,c]
str.join(list)  #结果为:‘a b c‘
#简便方法 ‘ ‘.join(list)
View Code

例二:
技术图片
str = _
list = [a,b,c]
str.join(list)   #结果为:‘a_b_c‘
#简便方法  ‘_‘.join(list)
View Code

 

字符串的操作

标签:索引   判断字符串   partition   spl   例题   pre   isa   hide   ide   

原文地址:https://www.cnblogs.com/wjun0/p/11515359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!