show/hide this revision's text 5 deleted 4 characters in body

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:

<'a

<a href="http://www.google.com">Google<'/a>
<'a </a>
<a href="http://www.apple.com">Apple<'/a></a>

The output would be:
Google, http://www.google.com
Apple, http://www.apple.com

I'm looking for a Groovy answer. AKA. The easy way!

    Post Made Community Wiki by Community

show/hide this revision's text 4 Clarifying the type of answer that I'm looking for.

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:

<'a href="http://www.google.com">Google<'/a>
<'a href="http://www.apple.com">Apple<'/a>

The output would be:
Google, http://www.google.com
Apple, http://www.apple.com

I'm looking for a Groovy answer. AKA. The easy way!

show/hide this revision's text 3 added 200 characters in body
show/hide this revision's text 2 edited tags
show/hide this revision's text 1