打开txt文件 查看是否包含字符串
时间: 2023-10-05 14:13:49 浏览: 76
CreatFile.zip_MFC_creat 字符串_mfc creatfile_mfc txt_mfc 字符串
好的,我可以为您提供一个Python代码示例来实现该功能。您可以将其保存为.py文件并执行。
```python
file_path = 'file.txt'
search_string = 'hello'
with open(file_path, 'r') as file:
for line in file:
if search_string in line:
print(f'The file contains the string "{search_string}"')
break
else:
print(f'The file does not contain the string "{search_string}"')
```
在这个例子中,我们首先指定要检查的文件的路径和要搜索的字符串。然后,我们使用Python的`with`语句打开文件,并逐行读取文件内容。如果找到了搜索字符串,我们打印一条消息并使用`break`语句停止查找。如果没有找到,我们将在`for`循环后面的`else`分支中打印另一条消息。
阅读全文