Software Development Network>> Visual C#>> how read html document
I want to open html document, and extract text, and read from a line
Thanks
how read html document
12340987
webBrowser1.Document.Body.InnerHtml;
and use regular expressions to find the text you want.
Or you can just read the document as a normal text file if you have it as a file, but still use regular expressions to find the text you want.