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.
EDIT :: VB.NET
Dim htmlDoc AsNew 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"