具有组python的多行正则表达式

时间:2016-04-07 16:23:48

标签: python regex multiline

根据我的以下要求寻找正则表达专家的一些帮助。我有一个格式的字符串

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')

3 个答案:

答案 0 :(得分:0)

试试这个正则表达式:

if\s+\(([^)]+)\)\s+then\s+([\s\S]+?)end

描述

Regular expression visualization

演示

Click to view

答案 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()))