码迷,mamicode.com
首页 > 编程语言 > 详细

Python字符串的查找

时间:2021-03-09 13:15:53      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:个数   print   code   pre   找不到   index   子串   world   返回   


mystr = ‘hello world and chris and java and python‘

#find(子串,开始位置,结束位置) 找不到返回-1
print(mystr.find(‘and‘))
print(mystr.find(‘and‘,15))
print(mystr.find(‘ands‘))

#index(子串,开始位置,结束位置) 找不到报错
print(mystr.index(‘and‘))
print(mystr.index(‘and‘,15))
# print(mystr.index(‘ands‘))

#count(子串,开始位置,结束位置) 统计字串的个数
print(mystr.count(‘and‘))
print(mystr.count(‘and‘,15,25))
print(mystr.count(‘ands‘))

#rfind() 和 rindex() 是从右侧开始检索,其余和find和index一样
print(mystr.rfind(‘and‘))
print(mystr.rindex(‘and‘))

Python字符串的查找

标签:个数   print   code   pre   找不到   index   子串   world   返回   

原文地址:https://www.cnblogs.com/codegzy/p/14499884.html

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