Author: BiGPoppa | Posted on: 7/21/2009 4:25:04 AM | Views : 1253

I have some html that I read in through a scrape... I can't figure out how to get the inner html out of the elements.
I have..
<table>
<tr>
<td>TUE</td>
</tr>
<tr>
<td>21 JUL</td>
</tr>
<div>
<tr>
<td>
<img src="images/sunnf.gif"></td>
</tr>
<tr>
<td>Clear</td>
</tr>
</div>
<tr>
<td></td>
</tr>
<tr>
<td>High</td>
</tr>
<tr>
<td>115 F / 46 C</td>
</tr>
....

Is it possible to just get

TUE
21 JUL
sunny.gif
High
115 F / 46
 
...

Go to the complete details ...