Batch File for Xml modification

前端 未结 3 1666
醉话见心
醉话见心 2021-01-22 07:13

i have an xml file on which i have to do modification basing on some rules and i want to know can we do that in the batch script. suppose the following is the sample of xml file

3条回答
  •  臣服心动
    2021-01-22 07:51

    @ECHO OFF
    SETLOCAL
    (
     FOR /f "delims=" %%a IN (q19559569.xml) DO (
      ECHO("%%a"|FIND "" >NUL
      IF NOT ERRORLEVEL 1 (
        ECHO(^
         
     
    热议问题