c# 一句正则表达式匹配文本中多个数据

<td>123456789</td><td>123</td><td>文字</td><td>文字</td>
把里面的td标签之间的东西提取出来
最新回答
栀子味的猫

2024-10-24 08:26:16

Regex r = new Regex(@"<td>[\s\S]*?</td>", RegexOptions.Multiline);
foreach (Match item in r.Matches(str))
{
    GroupCollection matches = item.Groups;
    for (int i = 0; i < matches.Count; i++)
    {
        Console.WriteLine(matches[i].Value.ToString());
    }
}