0
這裏多個段落標記的內部文本是代碼:如何提取其嵌套withing一個錨標記
<a id='Letter1'>
<p>Dear Sir, </p>
<p>This is with.........</p>
<p>I would be.......</p>
<p>Hoping to hear from you soon</p>
<p>Regards.</p>
</a>
使用XPath我想提取其中包含內的所有段落標記的內部文本錨定標記作爲單個文本實體。
最終的結果我想是
string letterBody= document.DocumentNode.SelectSingleNode("//XPATH QUERY").innerText;
其中letterBody = 「親愛的先生,這是...................問候。」