I'm getting this below value while scraping , i just need only 28 from this string
<td colspan="2" class="invalid">
28 Errors, 3 warning(s)
</td>
my code
string strurl = "http://validator.w3.org/check?uri=" + url + "";
StreamReader stream = objm.URLServerRequest(strurl)
string myResponse = stream.ReadToEnd();
MatchCollection AltTag = Regex.Matches(myResponse, @"(?si)<td\b[^<]*?>(.*?)</td>", RegexOptions.IgnoreCase | RegexOptions.Multiline);