python:find_index

文字列検索(find, index)

find('文字列'[, 開始位置[, 終了位置]])
index('文字列'[, 開始位置[, 終了位置]])
a =  'abcdefabcdef'
 
a.find('cg')
-1
a.index('cg')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: substring not found
 
a.find('cd')
2
a.index('cd')
2
 
a.find('cd', 6)
8
a.index('cd', 6)
8
 
a.find('cg', 6)
-1
a.index('cg', 6)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: substring not found
  • python/find_index.txt
  • 最終更新: 2019/08/19 06:52
  • by ともやん