按解析值分组HTML AgilityPack C#

时间:2014-04-12 08:57:47

标签: c# html xpath group-by selectnodes

在C#中分组数据,我已经解析了html文件并获取了所有数据,现在我想将它们分组如下:

enter image description here

选择的那些行是父级并包含以下子级,我正在处理的代码在这里:

var uricontent = File.ReadAllText("TestHtml/Bew.html");
            var doc = new HtmlDocument(); // with HTML Agility pack
            doc.LoadHtml(uricontent);

            var rooms = doc.DocumentNode.SelectNodes("//table[@class='rates']").SelectMany(
                detail =>
                {

                    return doc.DocumentNode.SelectNodes("//td[@class='rate-description'] | //table[@class='rooms']//h2 | //table[@class='rooms']//td[@class='room-price room-price-total']").Select(
                        r => new
                        {
                            RoomType = r.InnerText.CleanInnerText(),
                        });
                }).ToArray();

RoomType包含由HTML AgilityPack解析的数据,如何按名称分组,如Pay&保存,仅限最佳房间......

HTML文件位于:http://notepad.cc/share/g0zh0TcyaG

谢谢

1 个答案:

答案 0 :(得分:0)

而不是做3个XPath查询的联合,然后尝试通过&#34;速率描述&#34;将它们分组。 (又名元素:<td class="rate-description">),你可以用另一种方式来做。

您可以根据&#34;费率说明&#34;进行LINQ选择,然后在投影部分,获取当前&#34;费率说明&#34;下的所有房型和房价。使用相对XPath:

var rooms = 
    doc.DocumentNode
       .SelectNodes("//table[@class='rates']//tr[@class='rate']")
       .Select(r => new
         {
            RateType = r.SelectSingleNode("./td[@class='rate-description']")
                        .InnerText.CleanInnerText,
            RoomTypes = r.SelectNodes("./following-sibling::tr[@class='rooms'][1]//table[@class='rooms']//h2")
                         .Select(s => new
                         {
                            RoomType = s.InnerText.CleanInnerText,
                            Rate = s.SelectSingleNode(".//parent::td/following-sibling::td[@class='room-price room-price-total'][1]")
                                    .InnerText.CleanInnerText
                         }).ToArray()
         }).ToArray();

上面一些XPath查询开头的通知期。这告诉HtmlAgilityPack该查询与当前HtmlNode相关。结果是这样的:

enter image description here