标题: [已处理]批处理如何提取双引号里的内容?sed或for可以吗 [打印本页]
作者: mlc8686 时间: 2015-6-20 14:21 标题: [已处理]批处理如何提取双引号里的内容?sed或for可以吗
文本:DefaultIPGateway={"192.168.1.1"}
提取:192.168.1.1
作者: bailong360 时间: 2015-6-20 15:24
本帖最后由 bailong360 于 2015-6-20 15:52 编辑
- @for /f tokens^=2^ delims^=^" %%i in (a.txt) do @echo %%i
- @pause
复制代码
- @grep -oP "(?<=\").+?(?=\")" a.txt>b.txt
复制代码
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |