I have an html file, and i want to get all the data within a tbody.
The tbody is defined uniquely by a id=string.
So is there a way for me to find that tbody, and than parse each
<tr><td></td></tr>
within that tbody?
I assume iwould use a RegexFilter filter = new RegexFilter();
So it would return the tbody found, but now how would i iterate through the
enclosed tr's td's?
|