我正在开发一个 python 自动化脚本,我想根据正则表达式匹配提取特定段落,但我不知道如何提取该段落。以下是我的案例的示例:
解决方案:(一致模式)
我要提取的段落(不一致模式)
远程值:x(一致模式)
以下是我目前正在制作的程序,如果有人能启发我,那就太好了!
import re
test= 'Solution\s:'
test1='Remote'
with open('<filepath>', 'r') as extract:
lines=extract.readlines()
for line in lines:
x = re.search(test, line)
y = re.search(test1, line)
if x is not y:
f4.write(line)
print('good')
else:
print('stop')
慕桂英3389331
相关分类