I want to parse a web page in Groovy and extract all of the href links and the associated text with it. If the page contained these links:<br> <'a href="http://www.google.com">Google<'/a><br> <'a href="http://www.apple.com">Apple<'/a> The output would be:<br> Google, http://www.google.com<br> Apple, http://www.apple.com<br> I'm looking for a Groovy answer. AKA. The easy way!