-1

私はファイルが含まれています

google 
google talk browser
google talks
google talk

Pythonを使用してファイル内の「トーク」を検索し、余分な文字列なしで正確に検索し、Pythonを使用して行を印刷する方法

4

2 に答える 2

1

比較演算子を使用するだけです。

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
于 2012-10-04T05:14:20.193 に答える
0
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
于 2012-10-04T05:19:57.200 に答える