Python字符串的查找
2021-06-09 03:05
标签:个数 print code pre 找不到 index 子串 world 返回 Python字符串的查找 标签:个数 print code pre 找不到 index 子串 world 返回 原文地址:https://www.cnblogs.com/codegzy/p/14499884.html
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‘))