python提取txt中指定内容
时间: 2023-05-22 18:02:04 浏览: 62
取指定文本行内容
可以使用Python中的正则表达式来提取txt中指定内容。以下是一个示例代码:
```python
import re
with open('file.txt', 'r') as f:
text = f.read()
pattern = re.compile(r'specified content')
matches = pattern.findall(text)
for match in matches:
print(match)
```
其中,`file.txt`是要提取内容的文件名,`specified content`是要提取的内容的正则表达式。该代码将输出所有匹配的内容。
阅读全文