I have Bing html and i want to parse the results from it with :
string BingRegex = "<div class=\"sb_tlst\"><h3><a href=\"(.*?)\"";
string[] results = Regex.Matches(responseStr, BingRegex).Cast<Match>().Select(m => m.Value).ToArray();
I get the results to the array but it add the pattern to each result , something like :
<div class=\"sb_tlst\"><h3><a href=\"www.cnn.com\"
<div class=\"sb_tlst\"><h3><a href=\"www.google.com\"
<div class=\"sb_tlst\"><h3><a href=\"www.gmail.com\"
Any idea how can i fix this and get only the url?