我刚刚参与使用C#语言和HtmlAgilityPack解析一些html文件。
我试图为每一行获取两列值以将它们插入到数据库中。 但运行以下内容:
foreach (HtmlNode row in htmlDoc.DocumentNode.SelectNodes("//tr"))
{
foreach (HtmlNode cell in row.SelectNodes("//td"))
{
Console.WriteLine(cell.InnerText);
}
}
我收到了一个错误,因为我循环遍历所有td而不仅仅包括当前tr中的那些。
我的HTML看起来像这样:
<table>
<tr>
<th align="center" width="50"><b>column 1</b></th>
<th align="center" width="210"><b>column 2</b></th>
</tr>
<tr bgcolor="#ffffff">
<td align="left"> </td>
<td align="left"></td>
</tr>
<tr bgcolor="#dddddd">
<td align="left"> </td>
<td align="left"></td>
</tr>
<tr bgcolor="#ffffff">
<td align="left"> </td>
<td align="left"></td>
</tr>
答案 0 :(得分:0)
只是为了让您知道我已经更新了运行良好的代码,但看起来并不那么好:
j = htmlDoc.DocumentNode.SelectNodes("//tr").Count;
if (j != 0)
{
for (int i = 2; i < j; ++i)
{
for (int k = 1; k < 3; k++)
{
HtmlNodeCollection row = htmlDoc.DocumentNode.SelectNodes("/html/body/table/tr[" + i + "]/td[" + k + "]");
Console.WriteLine("nb or row" + row.Count);
Console.WriteLine(row[0].InnerText);
//Console.Read();
}
}
}
如果您有任何想法来增强此代码,那就太棒了。
谢谢, 达明
答案 1 :(得分:0)
也许这个
var rows = doc.DocumentNode
.SelectNodes("//tr")
.Select((z, i) => new
{
RowNumber = i,
Cells = z.ChildNodes.Where(c => c.NodeType == HtmlNodeType.Element) })
.ToList();
rows.ForEach(row => Console.WriteLine("{0}: {1}", row.RowNumber, string.Join(", ", row.Cells.Select(z => z.InnerText))));