Hey all i am in need of some help trying to figure out how to go about getting what i need out of some html code:
Code:
<tr>
	<td style="padding: 2px 2px 2px 5px"><span class="modForm">IN</span></td>
	<td align="right" class="">91&nbsp;&nbsp;</td>
	<td align="right" class="">6&nbsp;&nbsp;</td>
</tr>	
<tr>
        <td style="padding: 2px 2px 2px 5px"><span class="modForm">Other</span></td>
	<td align="right" class="">9&nbsp;&nbsp;</td>
        <td align="right" class="">11&nbsp;&nbsp;</td>
</tr>
The above code is just some of the overall html code that will be put inside a text box. There are a total of 8 "<td align="right" class="">" tages that i need to find. After finding those, i need just the part after that to the "</td>". So in the example above:
Code:
<td align="right" class="">91&nbsp;&nbsp;</td>
I would only need:
Code:
91
Each time it finds that i will set a count (Do until X=8) and place it into a text file. So the text file should end up looking like this:
Code:
91,6,9,11,...
Any help would be great!

David