Tagged Questions
4
votes
1answer
3k views
Using XmlSlurper: How to select sub-elements while iterating over a GPathResult
I am writing an HTML parser, which uses TagSoup to pass a well-formed structure to XMLSlurper.
Here's the generalised code:
def htmlText = """
<html>
<body>
<div id="divId" ...
2
votes
1answer
47 views
how to find offending line when using XmlSlurper
I am parsing a dirty html page with XmlSlurper, and I get the following error:
ERROR org.xml.sax.SAXParseException: Element type "scr" must be followed by either attribute specifications, ">" or ...
2
votes
1answer
224 views
extracting parts of HTML with groovy
I need to extract a part of HTML from a given HTML page. So far, I use the XmlSlurper with tagsoup to parse the HTML page and then try to get the needed part by using the StreamingMarkupBuilder:
...
2
votes
2answers
2k views
Groovy pretty print XmlSlurper output from HTML?
I am using several different versions to do this but all seem to result in this error:
[Fatal Error] :1:171: The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace ...