How: 文字列メソッド find() 、rfind() を使う。
例)
01234567890123456789012345678901
THIS IS A PEN. THIS IS AN APPLE.
に、文字列が含まれているかどうかを確認する。
1: 'IS' を前から探す → 2が返ってくる
2: 'THIS' を前から探す → 0が返ってくる
3: 'THIS' を後ろから探す → 15が返ってくる
4: 'PINEAPPLE' を探す → 無いから、-1が返ってくる
Source:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# find と rfind メソッドを試す | |
a = 'THIS IS A PEN. THIS IS AN APPLE.' | |
# 1: 'IS' を前から探す → 2が返ってくる | |
print(a.find('IS')) | |
# 2: 'THIS' を前から探す → 0が返ってくる | |
print(a.find('THIS')) | |
# 3: 'THIS' を後ろから探す → 15が返ってくる | |
print(a.rfind('THIS')) | |
# 4: 'PINEAPPLE' を探す → 無いから、-1が返ってくる | |
print(a.find('PINEAPPLE')) |
Result:
-> % python test.py
2
0
15
-1