
From that lot I would like the string "the quick brown fox jumps over
Hello, I am attempting to use HXT to scraped some html from the web. In my html are a few <div>s, all with a particular attribute. I wish the get the text nodes out of these <div>s. For each <div> I can use listA ( deep isText >>> getText ) >>> arr concat to get all the text children an dmake one string out of them. I'm just struggling to get all the text out of many similar <div>s. Here's an html fragment similar to what I'm trying to process: <tr> <td> <div attr="value"> the quick <br/> brown fox </div> </td> <td> <div attr="value"> jumps over<br/> </div> </td> </tr> <tr> <td> <div attr="value"> the lazy dog </div> </td> </tr> the lazy dog". How might this be achieved??? Thanks, Jeff