Python String find() 方法
Python String find() 方法检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,如果指定范围内如果包含指定索引值,返回的是索引值在字符串中的起始位置。如果不包含索引值,返回-1。
Python String find() 语法
find()方法语法:
str.find(str, beg=0, end=len(string))
Python String find() 参数
- str – 指定检索的字符串
- beg – 开始索引,默认为0。
- end – 结束索引,默认为字符串的长度。
Python String find() 返回值
如果包含子字符串返回开始的索引值,否则返回-1。
Python String find() 示例1
find()方法不带beg和end参数.
word = 'welcome to apidemos.com'
result = word.find('apidemos')
print("Substring 'apidemos' found at index:", result)
result = word.find('to')
print("Substring 'to ' found at index:", result)
if word.find('deepinout') != -1:
print("Contains given substring ")
else:
print("Doesn't contains given substring")
输出:
Python String find() 示例2
find()方法带beg和end参数.
word = 'welcome to apidemos.com'
print(word.find('api', 2))
print(word.find('apidemos', 2))
print(word.find('d', 4, 10))
print(word.find('to', 4, 11))
输出: