class Program
{
static void Main(string[] args)
{
//反向引用
//在表达式内部使用之前捕获分组匹配的文本
string str = "aa";
string reg = @"([a-z])\1";//这里的\1就表示,引用第一个()中匹配的文本内容
bool res = Regex.IsMatch(str, reg);
Console.WriteLine(res.ToString());
string str2 = "<a>dd</a>";
string reg2 = @"<([^>]+)>[/d/D]*?</\1>";//这里的\1就表示,引用第一个()中匹配的文本内容
bool res2 = Regex.IsMatch(str2, reg2);
Console.WriteLine(res2.ToString());
Console.ReadKey();
}
}
来源:https://www.cnblogs.com/lmfeng/p/3342863.html