使用Windows Batch从XML文件中删除两条xml标记行

时间:2019-01-09 15:11:52

标签: shell

我有一个类似下面的文件,想删除<body><p>标签并使用Windows批处理显示其余内容

<?xml version="1.0"?>
<header>
  <name> test value </name>
  <value>
    <body>
        <p>test file to remove paragraph tag</p>
    </body>
  </value>
</header>

我希望批处理脚本显示如下所示的结果

<?xml version="1.0"?>
<header>
  <name> test value </name>
  <value>
         test file to remove paragraph tag
  </value>
</header>

0 个答案:

没有答案