我想使用 HAP 从网站上的表中抓取数据,遍历行以在与预定义字符串匹配的列中查找值,然后仅存储匹配的行。然后我将有一个字典,其中列标题作为键,选定行的列文本作为值。
表前。
<table id="Table3">
<tbody><tr><td></td></tr>
<tr>
<td>ID</td>
<td>Last Name</td>
<td>First Name</td>
<td>Birth Date</td>
<td>Relation</td>
</tr>
<tr>
<td>nbsp;01 </td>
<td> DUNN </td>
<td> JOE </td>
<td> 19931209 </font></td>
<td> Son </td>
</tr>
<tr>
<td>nbsp;02 </td>
<td> SMITH </td>
<td> MARY </td>
<td> 19950206 </font></td>
<td> Daughter </td>
</tr>
<tr>
<td>nbsp;03 </td>
<td> ROCKFORD </td>
<td> BILL </td>
<td> 20000320 </font></td>
<td> Son </td>
</tr>
</tbody></table>
如果我想要匹配的出生日期是 20000320,那么我想要比尔的所有信息。
将标题标题添加到列表中没有问题。我知道我没有正确写下用户行。我所拥有的仍在尝试获取行列表而不是一行。我在用户行中遇到的另一个问题是内部文本将在其中返回“ ”,我不能只做一个 .Replace 所以我需要一种删除空格的方法。我愿意接受所有建议。做所有这些的更聪明的方法等等。
List<string> headerList = new List<string>();
List<string> userList = new List<string>();
var htmlRows = htmlDoc.DocumentNode.SelectNodes("//*[@id=\"Table3\"]/tbody/tr");
if(htmlRows != null)
{
// Add first row which contains column headings
htmlRows[2]
.Elements("td")
.Select(td => td.InnerText.Trim())
.ToList()
.ForEach(header => headerList.Add(header));
// Add user rows
htmlRows
.Skip(3)
.Select(tr => tr.Elements("td")
.Where(td => td.InnerText.Trim() == dteDOB))
.ToList()
.ForEach(row => userList.Add(row));
for(int i = 0; i < headerList.Count; i++)
{
if(headerList.Count == userList.Count && userList[i] != null)
dictValues.Add(headerList[i], userList[i]);
}
}