使用Htmlagility包获取属性值

时间:2013-07-27 06:28:37

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

使用Htmlagilitypack我可以使用以下代码获取一个标记的属性值:

public string parseinput(HtmlDocument HtmlDocument)
{
     try
     {
            return HtmlDocument.DocumentNode.SelectSingleNode("//input[@type=""text""]").Attributes["value"].Value;
     }

     catch (Exception ex)
     {
          string x= ex.ToString();
            return "Error is... '"+x+"'" ;
     }
 }

当它获得第一个值时,它会停止执行并提供该值,但我需要将所有这些文本类型值作为输出。

为此,我需要做什么?

1 个答案:

答案 0 :(得分:1)

您需要SelectNodes而不是SelectSingleNode

return String.Join(",", HtmlDocument.DocumentNode.SelectNodes("//input[@type=""text""]")
                         .Select(n=>n.Attributes["value"].Value)

如果您需要输入类型和值

var inputs = doc.DocumentNode.SelectNodes("//input").Select(n => new { 
                 Type = n.Attributes["type"].Value, Value = n.Attributes["value"].Value }).ToList();