The tagsoup tag has no wiki summary.
6
votes
4answers
1k views
With Haskell, how do I process large volumes of XML?
I've been exploring the Stack Overflow data dumps and thus far taking advantage of the friendly XML and “parsing” with regular expressions. My attempts with various Haskell XML libraries to find the ...
4
votes
1answer
158 views
Download pdf file from wikipedia
Wikipedia provides a link (left side on Print/export) on every article to download the article as pdf. I wrote a small Haskell script which first gets the Wikipedia link and output the rendering link. ...
4
votes
3answers
976 views
Tagsoup fails to parse html document from a StringReader ( java )
I have this function:
private Node getDOM(String str) throws SearchEngineException {
DOMResult result = new DOMResult();
try {
XMLReader ...
3
votes
2answers
295 views
Strange behavior with tagsoup and Groovy's XmlSlurper
Let's say I want to parse the phone number from an an xml string like this:
str = """ <root>
<address>123 New York, NY 10019
<div class="phone"> (212) ...
3
votes
1answer
274 views
XPath Expression returns nothing for //element, but //* returns a count
I'm using XOM with the following sample data:
Element root = cleanDoc.getRootElement();
//find all the bold elements, as those mark institution and clinic.
Nodes nodes = root.query("//*");
<html ...
2
votes
2answers
167 views
Processing (too) many XML files (with TagSoup)
I have a directory with about 4500 XML (HTML5) files, and I want to create a "manifest" of their data (essentially title and base/@href).
To this end, I've been using a function to collect all the ...
1
vote
2answers
48 views
Is it possible to apply an XSLT transform to a DOM element?
I have a webpage that has many user-generated elements that need to be "cleaned" and I'd like the cleanup to be expressed as an XSLT transform because it suits the purpose quite well.
Is there a way ...
1
vote
1answer
411 views
TagSoup and XPath
I'm trying to use TagSoup with XPath (JAXP). I know how to obtain SAX parser from TagSoup (or XMLReader). But I failed to find how to create DocumentBuilder that will use that SAX parser. How do I do ...
1
vote
1answer
766 views
jTidy and TagSoup documentation
I'm looking for documentation (officially documentation if it is possible) for TagSoup and jTidy libraries.
I want use this libraries to manipulate html "tagsoup" files that include xml tags with ...
1
vote
0answers
503 views
Parsing XML with TagSoup : bug with long attributes?
I'm trying to parse ugly HTML with TagSoup to extract value of a given tag.
Here is the tag :
<input type="hidden" name="hash_check" value="ffc39410ed8da309408a9382450ddc85" />
I want to ...
1
vote
1answer
269 views
JDOM 1.1: hyphen is not a valid comment character
I'm using tagsoup to clean some HTML I'm scraping from the internet, and I'm getting the following error when parsing through pages with comments:
The data "- - - - - - - - - - - - - - - - - - - - - ...
0
votes
1answer
37 views
Java with XPath and TagSoup
I am using TagSoup with java to extract some data , but certain XPATH are not working , I just get empty results
FileReader frInHtml = new FileReader("doc.html");
BufferedReader brInHtml = new ...
0
votes
1answer
52 views
Tagsoup , tag as text to another tag
hello guys i hope this message finds you all well.
So my questions has to do with tagsoup , what i want to achieve is to have a tag as a text of another tag, in specific , i want the <a ...
0
votes
0answers
144 views
How to get an attribute from an XMLReader
I have some HTML that I'm converting to a Spanned using Html.fromHtml(...), and I have a custom tag that I'm using in it:
<customtag id="1234">
So I've implemented a TagHandler to handle this ...
0
votes
1answer
100 views
Parsing XHTML using SAX to change only the PCDATA
I am looking for an example of using Sax parser to parse an XHTML string and change every single occurence of a string (s1) to (s2) if s1 is in the PCDATA not attributes. Can somebody shed some lights ...