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>
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.