1

私は文字列を持っています:

<a href = "http://www.zigwheels.com/reviews/long-term-reviews/fiat-linea/8804-100-1/1">
  <img src="http://static.zigwheels.com/media/content/2011/Jul/fiatlinealt_1_560x420.jpg" />
</a> 
<p>
  To sum it up in a nutshell, the Fiat Linea is a spacious family car that 
  rewards you with its space and fuel efficiency, while maintaining 
  decent levels of performance as well
</p>

<p>タグ内のテキストだけが必要です。助けてください... vb.net Windows アプリケーション用の純粋な vb 言語で必要です。

4

2 に答える 2

1

HTML Agility Pack を使用できます。ここに例があります

HtmlDocument htmlDoc = new HtmlDocument();
htmlDoc.LoadHtml("Get the entire string here");
var xyz = from x in htmlDoc.DocumentNode.DescendantNodes()
                     where x.Name == "p"
                     select x.InnerText;

このようにして、必要に応じて値を取得できます。次のリンクからさらにヘルプを得ることができます。

http://htmlagilitypack.codeplex.com/

編集::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
于 2013-04-08T11:29:50.810 に答える