I have many lines such as this:
string s = "Some HTML with two <A HREF="links"> in one <A HREF="line">";
I need to use regular expressions to get the URLs in between the quotation marks, like this:
string all_links[] = {"links", "line"};
How would I go about doing this?