How do you parse a web page and extract all the href links? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:41:37Zhttp://stackoverflow.com/feeds/question/99279http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links3How do you parse a web page and extract all the href links?melling2008-09-19T03:26:35Z2008-10-16T01:50:26Z
<p>I want to parse a web page in Groovy and extract all of the href links and the associated text with it.</p>
<p>If the page contained these links:<br></p>
<p><a href="http://www.google.com">Google</a><br>
<a href="http://www.apple.com">Apple</a></p>
<p>The output would be:<br>
Google, <a href="http://www.google.com" rel="nofollow">http://www.google.com</a><br>
Apple, <a href="http://www.apple.com" rel="nofollow">http://www.apple.com</a><br></p>
<p>I'm looking for a Groovy answer. AKA. The easy way!</p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/99293#992935Answer by William Keller for How do you parse a web page and extract all the href links?William Keller2008-09-19T03:28:55Z2008-09-19T03:28:55Z<p>A quick google search turned up a nice looking possibility, <a href="http://blog.foosion.org/2008/06/09/parse-html-the-groovy-way/" rel="nofollow">TagSoup</a>.</p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/99308#993080Answer by Zombies for How do you parse a web page and extract all the href links?Zombies2008-09-19T03:31:06Z2008-09-19T03:31:06Z<p>depends which languages you know...
In Java I use Apache common's HTTP Parser (along with their HTTPClient).</p>
<p>I'm sure that there is a widely used HTML parser for this in any language that you are developing in.</p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/99362#99362-1Answer by J D OConal for How do you parse a web page and extract all the href links?J D OConal2008-09-19T03:41:42Z2008-09-19T03:41:42Z<p>Try a regular expression. Something like this should work:</p>
<pre><code>(html =~ /<a.*href='(.*?)'.*>(.*?)<\/a>/).each { url, text ->
// do something with url and text
}
</code></pre>
<p>Take a look at <a href="http://groovy.codehaus.org/Tutorial+4+-+Regular+expressions+basics" rel="nofollow">Groovy - Tutorial 4 - Regular expressions basics</a> and <a href="http://weblogs.asp.net/scottcate/archive/2004/12/13/281955.aspx" rel="nofollow">Anchor Tag Regular Expression Breaking</a>.</p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/99436#994361Answer by Peter Kelley for How do you parse a web page and extract all the href links?Peter Kelley2008-09-19T03:52:34Z2008-09-19T03:52:34Z<p>Use XMLSlurper to parse the HTML as an XML document and then use the find method with an appropriate closure to select the a tags and then use the list method on GPathResult to get a list of the tags. You should then be able to extract the text as children of the GPathResult.</p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/100197#1001972Answer by Anonymous for How do you parse a web page and extract all the href links?Anonymous2008-09-19T07:14:56Z2008-09-19T07:14:56Z<p>I don't know java but I think that xpath is far better than classic regular expressions in order to get one (or more) html elements.</p>
<p>It is also easier to write and to read.</p>
<pre><code><html>
<body>
<a href="1.html">1</a>
<a href="2.html">2</a>
<a href="3.html">3</a>
</body>
</html>
</code></pre>
<p>With the html above, this expression "/html/body/a" will list all href elements.</p>
<p>Here's a good step by step tutorial <a href="http://www.zvon.org/xxl/XPathTutorial/General/examples.html" rel="nofollow">http://www.zvon.org/xxl/XPathTutorial/General/examples.html</a></p>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/163795#1637952Answer by John Flinchbaugh for How do you parse a web page and extract all the href links?John Flinchbaugh2008-10-02T18:18:55Z2008-10-02T18:18:55Z<p>Assuming well-formed XHTML, slurp the xml, collect up all the tags, find the 'a' tags, and print out the href and text.</p>
<pre><code>input = """<html><body>
<a href = "http://www.hjsoft.com/">John</a>
<a href = "http://www.google.com/">Google</a>
<a href = "http://www.stackoverflow.com/">StackOverflow</a>
</body></html>"""
doc = new XmlSlurper().parseText(input)
doc.depthFirst().collect { it }.findAll { it.name() == "a" }.each {
println "${it.text()}, ${it.@href.text()}"
}
</code></pre>
http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/163874#1638740Answer by Prog for How do you parse a web page and extract all the href links?Prog2008-10-02T18:34:04Z2008-10-02T18:34:04Z<p>Html parser + Regular expressions
Any language would do it, though I'd say Perl is the fastest solution.</p>