Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my problem is i have to extracts all of tables from an html document and put them in a list of tables.

Hence i understand that the ending function type should be

getTable :: a [XmlTree] [[String]]

for example with the following xml:

<table class="t1">
<tr>
    <td>x</td>
    <td>y</td>
</tr>
<tr>
    <td>a</td>
    <td>b</td>
</tr>
</table>
<table class="t2">
<tr>
    <td>3</td>
    <td>5</td>
</tr>
<tr>
    <td>toto</td>
    <td>titi</td>
</tr>
</table>

i know how to retrieve all the rows from one xmlTree (example1) or all the tags "tables" which provides me the type [XmlTree], but i don't know how to map the arrow example1 inside the result of test2.

I'm sure its obvious but i can't find it.

test2 ::  IO [[XmlTree]]
test2 = runX $ parseXML "table.xml" >>> is "table">>> listA getChildren

example1 ::  ArrowXml a => a XmlTree [String]
example1  = is "table" /> listA (getChildren >>> is "td"  /> getText)
share|improve this question

1 Answer

up vote 2 down vote accepted

Using the same general idea that you have in example1, we can write getTable like this

getTable :: ArrowXml a => a XmlTree [[String]]
getTable =  hasName "table" >>> listA (rows >>> listA cols) where
    rows = getChildren >>> hasName "tr"
    cols = getChildren >>> hasName "td" /> getText

Running the arrow on your example document produces

[[["x","y"],["a","b"]],[["3","5"],["toto","titi"]]]
share|improve this answer
exactly what i wanted. i add to modify a little bit your getTable and change hasName with the following function is x = deep (isElem >>> hasName x). thank you – jinkou2 jinkou2 Jun 6 '12 at 11:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.