How do you parse a web page and extract all the href links?

后端 未结 7 2044
情话喂你
情话喂你 2021-01-01 19:18

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:



        
7条回答
  •  情话喂你
    2021-01-01 19:50

    Assuming well-formed XHTML, slurp the xml, collect up all the tags, find the 'a' tags, and print out the href and text.

    input = """
    John
    Google
    StackOverflow
    """
    
    doc = new XmlSlurper().parseText(input)
    doc.depthFirst().collect { it }.findAll { it.name() == "a" }.each {
        println "${it.text()}, ${it.@href.text()}"
    }
    

提交回复
热议问题