1 static void Ckeditor()2 {3 string tags = @"1234
";4 //正则表达式的引擎是贪婪,只要模式允许,它将匹配尽可能多的字符。5 //如何匹配满足条件的最短字符? 通过在“重复描述字符”(如*,如+)后面添加“?”,可以将匹配模式改成非贪婪。6 var res = Regex.Replace(tags, "<.*?>", "");7 Console.WriteLine(res);8 }
本文共 350 字,大约阅读时间需要 1 分钟。
1 static void Ckeditor()2 {3 string tags = @"1234
";4 //正则表达式的引擎是贪婪,只要模式允许,它将匹配尽可能多的字符。5 //如何匹配满足条件的最短字符? 通过在“重复描述字符”(如*,如+)后面添加“?”,可以将匹配模式改成非贪婪。6 var res = Regex.Replace(tags, "<.*?>", "");7 Console.WriteLine(res);8 }
转载于:https://www.cnblogs.com/ICE_Inspire/p/5098101.html