2

示例:在 test.xml 中,我有

   <head>
    <file name="input">
        <above>
              <tag point="x"/>
        </above>
        <below> 
              <result first="00"/>
        </below>
    </file>
    <file name="output">
        <above> 
              <tag point="y"/> 
        </above>
        <below> 
              <result first="11"/> 
        </below>
    </file>
   </head>

我应该在批处理脚本中读取这个 XML,我应该得到值 "11" 。这个“11”在标签中的标签内找到。

我只需要在上面指定的路径中获取值“11”。

这是一个示例,在实际场景中,可以有不同的值代替“11”。

提前致谢

4

1 回答 1

2
FOR /F tokens^=2^ delims^=^" %%A in ('find "result first=" test.xml') do echo:%%A

或在命令提示符下:

fOR /F tokens^=2^ delims^=^" %A in ('find "result first=" test.xml') do echo:%A

仅当您的文件结构如上所述(特别是新行)时,这才有效。最好使用 xml startlet http://xmlstar.sourceforge.net/有关for技巧的更多信息- >

http://ss64.org/viewtopic.php?id=1544

http://ss64.org/viewtopic.php?id=1572

于 2012-11-22T21:38:38.427 回答