How do I get the value from a HTML string using VB.NET?
<p style="text-align: center; margin: 0px">
<span style="font-family: tahoma,arial,helvetica,sans-serif; font-size: 12pt; font-weight: bold">
This is the text I want to catch!!!
</span>
</p>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use an HTML parser such as the HTML Agility Pack.
It can parse both full documents and document fragments and let you query these using XPath like syntax.
The source download comes with many example projects.