[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] 批处理如何把XML中指定内容批量提取出来?

网站地图只有XML的 。我想把XML里面的连接提取出来
        <url>
                <loc>https://m.hehgrwrld.net/info/8/8947.html</loc>
                <lastmod>2019-11-04</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/9/9488.html</loc>
                <lastmod>2019-11-04</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/10/10034.html</loc>
                <lastmod>2019-11-04</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/5/5453.html</loc>
                <lastmod>2019-12-06</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/17/17590.html</loc>
                <lastmod>2019-12-04</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/18/18160.html</loc>
                <lastmod>2019-12-06</lastmod>
                <changefreq>daily</changefreq>
                <priority>0.9</priority>
        </url>
        <url>
                <loc>https://m.hehgrwrld.net/info/18/18201.html</loc>
                <lastmod>2019-12-06</lastmod>

我想把 https://m.hehgrwrld.net/info/18/18201.html 这样的连接单独提取出来。

不能提取XML的话我可以先复制到TXT。

  1. @echo off
  2. for /f "tokens=3 delims=><" %%i in ('findstr /i /c:"https" "test.xml"') do echo %%i
  3. pause
复制代码
test.xml 换成你的xml文件

TOP

回复 2# went

..然后怎么生成到TXT文本中呢,,,,

TOP

回复 3# a8849516
  1. @echo off
  2. (for /f "tokens=3 delims=><" %%i in ('findstr /i /c:"https" "test.xml"') do echo %%i)>test.txt
  3. pause
复制代码

TOP

  1. @echo off & rem title by author Gan
  2. ::保存为suad.txt(随意)
  3. for /f "tokens=3 delims=><" %%a in ('findstr "\<https://" suad.txt') do (>>result.txt echo %%a)
  4. pause & exit
复制代码

TOP

返回列表