如何使用Html Agility Pack将文本加载为html

时间:2010-08-27 03:47:03

标签: .net html-agility-pack

<table class="\"matches   \">
<thead>
    <tr class="\"sub-head\">
        <th class="\"day\">
            Day<\/th><th class="\"date\">
                Date<\/th><th class="\"team team-a\">
                    Home team<\/th><th class="\"score-time\">
                        Score\/Time<\/th><th class="\"team team-b\">
                            Away team<\/th><th class="\"events-button button\">
                                &nbsp;<\/th><th class="\"info-button button\">

如何将此文本加载或解析为html,然后使用HAP提取数据? 感谢

2 个答案:

答案 0 :(得分:0)

This answer可能会帮助您入门。

你是否错误地获得了额外的反斜杠,或者源HTML文档的实际外观是什么?

答案 1 :(得分:0)

你走了:

string input; 
var htmlDocument = new HtmlDocument();
htmlDocument.LoadHtml(input); or htmlDocument.LoadHtml(@input);