Hi all,
I have a need to read and parse a table in HTML page.
I’m using the following script:
It works fine aside from link in href.
Example:
String to parse:
<tr><td><a href='vaffa.htm l'>elog</a></td><td>normal text</td></tr>
Output:
[[['elog', 'normal text']]]
as you can see it misses the info about href...
how can get this information 'vaffa.html'?
thanks,
Antonella
I have a need to read and parse a table in HTML page.
I’m using the following script:
It works fine aside from link in href.
Example:
String to parse:
<tr><td><a href='vaffa.htm l'>elog</a></td><td>normal text</td></tr>
Output:
[[['elog', 'normal text']]]
as you can see it misses the info about href...
how can get this information 'vaffa.html'?
thanks,
Antonella
Comment