private static string BuscaComparacao (string url)
{
Regex r =new Regex("\S+\D{3}[.]\D{3}\S+\D)";
var result = r.Matches(url);
return result[0].ToString();
}
The code does not find the data I had to fetch.