# Python CodeRecipe|index()の使い方
❮ Home ❮ String Methods
# index()の例1
txt = "Hello, welcome to my world."
x = txt.index("welcome")
print(x)
# index()の定義及び使い方
index()関数が最初の指定された値のオカレンス。 値が見つからない場合、index()メソッドでは例外が発生します。 index()関数は、find()唯一の違いはfind()関数は、値が見つからない場合-1を返します。 (下記の例を参照してください。)
# index()の構文
string.index(value, start, end)
# index()の引数
value:必須. The value to search for
start:オプション. Where to start the search. Default is 0
end:オプション. Where to end the search. Default is to the end of the string
# index()の例2
txt = "Hello, welcome to my world."
x = txt.index("e")
print(x)
# index()の例3
txt = "Hello, welcome to my world."
x = txt.index("e", 5, 10)
print(x)
# index()の例4
txt = "Hello, welcome to my world."
print(txt.find("q"))
print(txt.index("q"))
❮ Home ❮ String Methods