如何检索已经找到的节点的后代的所有节点。因此,使用xpath查询来检索xmlelement的所有节点。
我尝试了各种选择,但是没有得到想要的结果。有人可以帮我吗?
$nodes = $xmldoc | Select-Xml -Xpath "//Value/Bike"
foreach ($node in $nodes)
{
$node.Node.Name
[xml]$test = $node.Node.OuterXml
$subnodes = Select-Xml -xml $test -xpath "//Bike"
foreach ($subnode in $subnodes)
{
"Referencing: " + $subnode.Node.Name
}
}