无法通过powershell读取xml值

时间:2018-06-07 04:43:15

标签: xml xml-parsing powershell-v2.0 powershell-v3.0 powershell-v4.0

我试图通过powershell从xml中读取一个值。但我无法获得价值

以下是我的剧本

 #read xml
    $mydoc = [xml] @"
    <A1>
    <A2>
    <A3 Name="XYZ">VALUE</A3>
    </A2>
    </A1>
    "@

我想要检索VALUE。我尝试过以下方法:

$mydoc.A1.A2.A3

但是这不会检索VALUE。

0 个答案:

没有答案