views:

21

answers:

1

Hi All,

I have a text like:

<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\">

......................... *<\/strong> Matches were or will be played in the past\/next 3 days.<\/p><\/td><\/tr><\/tfoot><\/table>

How can i load or parse this text as html then extract it data using HAP? Thanks

A: 
string input;
HtmlDocument doc = new HTmlDocument();
doc.LoadHtml(@input);
Meltdown