Hi!
First post! :)
I have some problem with finding a number in a specific row in a HTML document i'm fetching. I dont really know much of Regexp, but i guess thats how i will do it?
The code i'm using
StreamReader sr = new StreamReader(HttpWResponse.GetResponseStream(), Encoding.ASCII);
int countLines = 0;
while(!sr.EndOfStream())
{
//Find: <td valign="top" align="right" >124379</td>
//sr.ReadLine(); //That one should hold the number.
}
I want to parse out 124379 from:
<td valign="top" align="right" >124379</td>
That number can differ (not always 6 chars). Anyone knows how to do it?
Thanks
/m