how read html document

I want to open html document, and extract text, and read from a line

Thanks




Answer this question

how read html document

  • 12340987

    Open the document in the WebBrowser ontrol that comes with the framework, then you can view the html with:

    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.


  • how read html document