How to transform/parse an html table
Hi
I have a string containing the code of an html table...
<table>
<tr>
<td>Column 1</td>
<td>Column 2</td>
<td>Column 3</td>
</tr>
<tr>
<td>Row1Value1</td>
<td>Row1Value2</td>
<td>Row1Value3</td>
</tr>
... etc. ...
</table>
Actually I would like to have the content of the table in a query (would prefer this) or in a xml structure or in a cf structure or in an array or whatever. I tried to do this with XMLParse but I did not get it - I do not want to understand DTDs or what ever it needs.
Is there a simple way for a rookie as me?
Thank you very much!
