私はファイルが含まれています
google
google talk browser
google talks
google talk
Pythonを使用してファイル内の「トーク」を検索し、余分な文字列なしで正確に検索し、Pythonを使用して行を印刷する方法
私はファイルが含まれています
google
google talk browser
google talks
google talk
Pythonを使用してファイル内の「トーク」を検索し、余分な文字列なしで正確に検索し、Pythonを使用して行を印刷する方法
比較演算子を使用するだけです。
with open('file.txt', 'r') as handle:
for index, line in enumerate(handle, 1):
if line.strip() == 'google talk':
print 'Match found on line', index
import re
txt = open("youfile.txt").read()
if re.search(r'[^\s]?google talk[\s$]?',txt):
//code for string present
else:
//code for string not-present