62,254
社区成员
发帖
与我相关
我的任务
分享 string str = @"<span style='color:red'>aa</span>
<span style='color:blue'>bb</span>";
Regex reg = new Regex(@"(?is)(?<=<span[^>]*?>)(?:(?!</?span).)*");
foreach (Match m in reg.Matches(str))
Console.WriteLine(m.Value);