Hey!
I have a problem with C# regex. Can you please tell me how I can match anchor:
Atm I have it like this:
Regex.Match(pagecontent, @"<a (.*) href=" + url + "(.*)>(.*?)</a>");
but some how it doesnt want to work for
<a target="_blank" href="http://myurl.com">Title</a>
And I need to get "Title" where href is http://myurl.com
Please help me out.