strRegex = New StringBuilder
strRegex.Append("<td class=""[\s\w\W]*?"">(?<strTKOWins>[^<]+)[\s]*?<span
class='[\s\w\W]*?'>(T)KOs[\s\w\W]*?</span>[\s\S]*</td>")
Regex = New System.Text.RegularExpressions.Regex(strRegex.ToString,
RegexOptions.None)
Matches = Regex.Match(results, strRegex.ToString)
This is my code. I want to match:
[? what ? Please insert here what you want to match]
The problem is that after the end of the SPAN tag, I want to skip everything inside the Table Cell and skip all the way to the end tag </td>
How can I do that?