我有一个像这样的XML:
<?xml version="1.0" encoding="utf-8" ?>
<colors>
<color index = "0">#FF0000</color>
<color index = "1">#FF0200</color>
<color index = "2">#FF0300</color>
<color index = "3">#FF0500</color>
[..]
我正在尝试按索引选择节点:
XmlDocument ColorTable = new XmlDocument();
ColorTable.Load(HttpContext.Current.Server.MapPath("~/App_Data/ColorTable.xml"));
int percentage = 2;
string xpath = string.Format(@"//color[index={0}]", percentage.ToString());
//string xpath = string.Format(@"//color[index=""{0}""]", percentage.ToString());
//string xpath = string.Format(@"//color[index='{0}']", percentage.ToString());
var r = ColorTable.SelectSingleNode(xpath).Value;
我也尝试了注释版本,但它没有返回任何结果。 有什么建议吗?
答案 0 :(得分:17)
请改用//color[@index='{0}']
。 @符号表示“属性”。
我注意到你正在使用逐字字符串文字 - 字符串的 start 处的@符号。在这种情况下没有必要 - 你在字符串中没有任何反斜杠,并且它不是多行的。您也无需在ToString
上明确调用percentage
- 它会自动转换。
string xpath = string.Format("//color[@index='{0}']", percentage);
答案 1 :(得分:9)
顺便说一句,对于我们这些不讲原生XPath的人来说,there are many online XPath "playgrounds" 允许您编写XML和XPath表达式并在线查看结果。
每当我发现自己处于“ XPath hell ”时,我通常会去那些playgrounds并尝试各种组合,直到我得到我的(需要的)结果,因为某些原因它比编写C#/ Python测试程序,甚至运行那些bloated所谓的XML编辑器。