根据我的以下要求寻找正则表达专家的一些帮助。我有一个格式的字符串
if (x==True) then
operation1
end
if (y==False) then
operation2
operation3
end
if (z==1) then
operation4
end
我正在寻找这个多行字符串,如下所示分组。
('x==True', 'operation1')
('y==False', 'operation2', 'operation3')
('z==1', 'operation4')
答案 0 :(得分:0)
答案 1 :(得分:0)
reg = r"if\s+\((.*?)\)\s+then\s(.*?)end"
match = re.findall(reg, text, re.DOTALL)
答案 2 :(得分:0)
使用parse模块的一种有趣的方式:
import re
from parse import *
s='''if (x==True) then
operation1
end
if (y==False) then
operation2
operation3
end
if (z==1) then
operation4
end'''
for block in re.split(r'(?<=\nend)\n', s):
m = parse("if ({}) then\n{}\nend", block)
print(tuple([m[0]]+m[1].strip().split()))