Extract Text From "
" HTML Tag
I have a string : Copy
In this way you can get the value as required. You can get more help from the following link.
http://htmlagilitypack.codeplex.com/
EDIT :: VB.NET
Dim htmlDoc As New HtmlDocument()
htmlDoc.LoadHtml("Get the entire string here")
Dim xyz = From x In htmlDoc.DocumentNode.DescendantNodes() Where x.Name = "p"x.InnerText
Post a Comment for "Extract Text From "
" HTML Tag"