我正在尝试使用 powershell 和 XPath 来选择下面 xml 示例中显示的名称属性。
$xml_peoples= $file.SelectNodes("//people")
foreach ($person in $xml_peoples){
echo $person.attributes
#echo $person.attributes.name
}
上面是我正在运行以尝试获取名称的代码,但它似乎不起作用。有什么建议么?
<peoples>
<person name='James'>
<device>
<id>james1</id>
<ip>192.192.192.192</ip>
</device>
</person>
</peoples>
提前致谢!