我想提取div類之間的文本「Some text goes here」。 我使用的HTML敏捷包,和C#如何使用htmlagilitypack提取div標籤內的文本
<div class="productDescriptionWrapper">
Some Text Goes here...
<div class="emptyClear"> </div>
</div>
這是我有:
Description = doc.DocumentNode.SelectNodes("//div[@class=\"productDescriptionWrapper\").Descendants("div").Select(x => x.InnerText).ToList();
我得到這個錯誤:
An unhandled exception of type 'System.NullReferenceException'
我知道如果文本如何提取是b/wa <h1>
或<p>
,而不是後代中的「div」,我將不得不給出「h1」或「p」。
有人請協助。
'[@class = \「productDescriptionWrapper \」''的右括號在哪裏? – BCdotWEB
可能是我錯過了,當我在這裏輸入它時,它不工作.. – fizmhd