1
儘管我在線看到過這些示例,但似乎無法對PowerShell中的屬性值執行XPath搜索。對PowerShell中屬性值的XPath搜索
[xml]$xml = '<a><b><c foo="bar"></c></b></a>'
$xml | select-xml -xpath //c[@foo] # This returns a node
$xml | select-xml -xpath //c[@foo='bar'] # This does not
我從來沒有被如此簡單的東西難住。 :-)我怎樣才能使這個工作?