I'm trying to parser this html code:
<tr>
<td>sdafsadf</td>
<td>12121</td>
<td>sdafasdf</td>
<td>32222</td>
<td>99999</td>
</tr>
and get second <td> the <td>12121</td>
ONLY, I found this link:
Support of \K in regex and .NET don't support \K
escape sequence, I make the REGEX:
(?s)(^(?:(.*?)(\K<td)){2})(.*?</td>)
and work fine in http://www.regexr.com/, please help me use this REGEX or similar in .NET.
I'm going crazy and tired because of it
Thanks Regards,