标题: [文本处理] 批处理如何把XML中指定内容批量提取出来? [打印本页]
作者: a8849516 时间: 2019-12-9 17:31 标题: 批处理如何把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。
作者: went 时间: 2019-12-9 18:36
- @echo off
- for /f "tokens=3 delims=><" %%i in ('findstr /i /c:"https" "test.xml"') do echo %%i
- pause
复制代码
test.xml 换成你的xml文件
作者: a8849516 时间: 2019-12-9 19:47
回复 2# went
..然后怎么生成到TXT文本中呢,,,,
作者: went 时间: 2019-12-9 20:03
回复 3# a8849516 - @echo off
- (for /f "tokens=3 delims=><" %%i in ('findstr /i /c:"https" "test.xml"') do echo %%i)>test.txt
- pause
复制代码
作者: Gin_Q 时间: 2019-12-11 10:56
- @echo off & rem title by author Gan
-
- ::保存为suad.txt(随意)
- for /f "tokens=3 delims=><" %%a in ('findstr "\<https://" suad.txt') do (>>result.txt echo %%a)
-
- pause & exit
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |