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());
}
}