正则使用平衡组,匹配函数体
比如有下面的一个源文件的string字符串
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Text.RegularExpressions;
namespace RegexTester
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Regex reg = new Regex(tbRegex.Text);
Match match = reg.Match(tbDoc.Text);
if (match != null)
{
MessageBox.Show(match.Value);
}
}
}
}
红色标记是要提取的内容
网上查了点资料写了如下正则:
private[\s\w]*button1_Click[\S\s]*(?'group'{)
[\s\S]*(?'-group'})
匹配的结构不是很对,多了很多内容,似乎关键就是红色的内容,不知道如何写
正则
------解决方案--------------------it is easy:
(?is)private.*button1_Click\([^)]+\).*?{((?<o>{)
------解决方案--------------------(?<-o>)}
------解决方案--------------------[^{}]+)*(?(o)(?!))}
------解决方案--------------------string pattern=@"(?is)private\s*void\s*button1_click[^{}]*\{((?<g>\{)
------解决方案--------------------(?<-g>\})
------解决方案--------------------[^{}])*(?(g)(?!))\}";