How do you parse a web page and extract all the href links? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:41:37Z http://stackoverflow.com/feeds/question/99279 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links 3 How do you parse a web page and extract all the href links? melling 2008-09-19T03:26:35Z 2008-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>&lt;a href="http://www.google.com">Google&lt;/a><br> &lt;a href="http://www.apple.com">Apple&lt;/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#99293 5 Answer by William Keller for How do you parse a web page and extract all the href links? William Keller 2008-09-19T03:28:55Z 2008-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#99308 0 Answer by Zombies for How do you parse a web page and extract all the href links? Zombies 2008-09-19T03:31:06Z 2008-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 -1 Answer by J D OConal for How do you parse a web page and extract all the href links? J D OConal 2008-09-19T03:41:42Z 2008-09-19T03:41:42Z <p>Try a regular expression. Something like this should work:</p> <pre><code>(html =~ /&lt;a.*href='(.*?)'.*&gt;(.*?)&lt;\/a&gt;/).each { url, text -&gt; // 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#99436 1 Answer by Peter Kelley for How do you parse a web page and extract all the href links? Peter Kelley 2008-09-19T03:52:34Z 2008-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#100197 2 Answer by Anonymous for How do you parse a web page and extract all the href links? Anonymous 2008-09-19T07:14:56Z 2008-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>&lt;html&gt; &lt;body&gt; &lt;a href="1.html"&gt;1&lt;/a&gt; &lt;a href="2.html"&gt;2&lt;/a&gt; &lt;a href="3.html"&gt;3&lt;/a&gt; &lt;/body&gt; &lt;/html&gt; </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#163795 2 Answer by John Flinchbaugh for How do you parse a web page and extract all the href links? John Flinchbaugh 2008-10-02T18:18:55Z 2008-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 = """&lt;html&gt;&lt;body&gt; &lt;a href = "http://www.hjsoft.com/"&gt;John&lt;/a&gt; &lt;a href = "http://www.google.com/"&gt;Google&lt;/a&gt; &lt;a href = "http://www.stackoverflow.com/"&gt;StackOverflow&lt;/a&gt; &lt;/body&gt;&lt;/html&gt;""" 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#163874 0 Answer by Prog for How do you parse a web page and extract all the href links? Prog 2008-10-02T18:34:04Z 2008-10-02T18:34:04Z <p>Html parser + Regular expressions Any language would do it, though I'd say Perl is the fastest solution.</p>