标题: [文本处理] [已解决]for skip跳行无法正常执行如何解决? [打印本页]
作者: mantis 时间: 2016-3-24 16:42 标题: [已解决]for skip跳行无法正常执行如何解决?
这个文本比较特殊,删除前两行skip跳行就可以实现,不删除就无法操作- @echo off&setlocal enabledelayedexpansion
- for /f "skip=2 delims=!, tokens=2,3" %%i in (test.txt) do (
- echo %%i %%j>>tmp.txt
- )
- pause
复制代码
作者: happy886rr 时间: 2016-3-24 19:06
回复 1# mantis
天下无特殊文本- @echo off&(for /f "skip=2 tokens=2,3 delims=!" %%i in ('type test.txt^|findstr /n .*') do (echo,%%i %%j))>tmp.txt
复制代码
作者: pcl_test 时间: 2016-3-24 20:05
本帖最后由 pcl_test 于 2016-3-24 20:26 编辑
@(for /f "skip=2 tokens=2,3 delims=!" %%i in ('type "test.txt"') do @echo;%%i %%j)>tmp.txt
@(for /f "tokens=2,3 delims=!" %%i in ('more +2 "test.txt"') do @echo;%%i %%j)>tmp.txt
作者: mantis 时间: 2016-3-24 22:46
回复 3# pcl_test
为什么总说我没有按版规发帖?
作者: pcl_test 时间: 2016-3-24 23:22
本帖最后由 pcl_test 于 2016-3-24 23:23 编辑
回复 4# mantis
这不就是你上个贴贴出的代码中的一段?后续有其它问题在原帖追问
http://www.bathome.net/redirect. ... 3808&ptid=39770
作者: mantis 时间: 2016-3-25 07:52
回复 5# pcl_test
哦,是需要在原帖中追问啊
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |