web-dev-qa-db-ja.com

HtmlAgilityPack-IDでタグを取得する方法

私にはやるべきことがあります。特定のtaghrefまたはidを取得する必要があります(idはユーザー入力に基づいています)。例私はこのようなhtmlを持っています

<manifest>

<item href="Text/Cover.xhtml" id="Cov" media-type="application/xhtml+xml" />
    <item href="Text/Back.xhtml" id="Back" media-type="application/xhtml+xml" />
  </manifest>

私はすでにこのコードを持っています。私を助けてください。ありがとうございました

HtmlAgilityPack.HtmlDocument document2 = new 

HtmlAgilityPack.HtmlDocument();
document2.Load(@"C:\try.html");
HtmlNode[] nodes = document2.DocumentNode.SelectNodes("//manifest").ToArray();

foreach (HtmlNode item in nodes)
{
    Console.WriteLine(item.InnerHtml);
}
21
knowme

私が正しく理解している場合:

HtmlAgilityPack.HtmlDocument document2 = new HtmlAgilityPack.HtmlDocument();
document2.Load(@"C:\try.html");

string tag = document2.GetElementbyId("yourid").Name;
string href = document2.GetElementbyId("yourid").GetAttributeValue("href", "");
35
nrkz

次のXPathを使用して、item属性値でid要素を見つけることができます。

var id = "Back";
var query = $"//manifest/item[@id='{id}']";
HtmlNode node = document2.DocumentNode.SelectSingleNode(query);
string href = node.GetAttributeValue("href", "");
5
har07