使用敏捷包解析html

时间:2016-02-16 13:57:18

标签: c# html parsing html-agility-pack

我有一个要解析的HTML(见下文)

<div id="mailbox" class="div-w div-m-0">
    <h2 class="h-line">InBox</h2>
    <div id="mailbox-table">
        <table id="maillist">
            <tr>
                <th>From</th>
                <th>Subject</th>
                <th>Date</th>
            </tr>
            <tr onclick="location='readmail.html?mid=welcome'" style="font-weight: bold;">
                <td>no-reply@somemail.net</td>
                <td>
                    <a href="readmail.html?mid=welcome">Hi, Welcome</a>
                </td>
                <td>
                    <span title="2016-02-16 13:23:50 UTC">just now</span>
                </td>
            </tr>
            <tr onclick="location='readmail.html?mid=T0wM6P'" style="font-weight: bold;">
                <td>someone@outlook.com</td>
                <td>
                    <a href="readmail.html?mid=T0wM6P">sa</a>
                </td>
                <td>
                    <span title="2016-02-16 13:24:04">just now</span>
                </td>
            </tr>
        </table>
    </div>
</div>

我需要解析<tr onclick=标记中的<td>标记和电子邮件地址中的链接。

到目前为止,我已经成功地从我的HTML中首次发现了电子邮件/链接。

HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(responseFromServer);

有人能告诉我它是如何做得好的?基本上我想要做的是从所述标签中的html获取所有电子邮件地址和链接。

foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//tr[@onclick]"))
{
    HtmlAttribute att = link.Attributes["onclick"];
    Console.WriteLine(att.Value);
}

编辑:我需要将解析后的值成对存储在类(列表)中。电子邮件(链接)和发件人电子邮件。

public class ClassMailBox
{
    public string From { get; set; } 
    public string LinkToMail { get; set; }    

}

1 个答案:

答案 0 :(得分:2)

您可以编写以下代码:

HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(responseFromServer);

foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//tr[@onclick]"))
{
    HtmlAttribute att = link.Attributes["onclick"];
    ClassMailBox classMailbox = new ClassMailBox() { LinkToMail = att.Value };
    classMailBoxes.Add(classMailbox);
}

int currentPosition = 0;

foreach (HtmlNode tableDef in doc.DocumentNode.SelectNodes("//tr[@onclick]/td[1]"))
{
    classMailBoxes[currentPosition].From = tableDef.InnerText;
    currentPosition++;
}

为了简化这段代码,我假设了一些事情:

  1. 电子邮件始终位于包含onlink属性的tr内的第一个td
  2. 每个带有onlink属性的tr都包含一封电子邮件
  3. 如果这些条件不适用,则此代码无法正常工作,它可能会抛出一些例外(IndexOutOfRangeExceptions),或者它可能会将链接与错误的电子邮件地址匹配。