标题: [特效代码] [已解决]突发奇想,批处理如何不用FOR实现逐行读取文本内容并跳过/忽略前几行 [打印本页]
作者: 老刘1号 时间: 2016-11-5 12:42 标题: [已解决]突发奇想,批处理如何不用FOR实现逐行读取文本内容并跳过/忽略前几行
自附一段代码,有待改进:- echo off&cls
- setlocal enabledelayedexpansion
-
- set skip=2
- set filename=1.txt
-
-
- set /a skip=skip-1
- set /a tmp1=1
- if !skip! equ 0 (call :不大于0) else call :大于0
- (del %tmp%\temp.tmp & del %tmp%\tmp2.tmp)2>nul
- goto :eof
-
-
- :大于0
- more +!skip! !filename! >%tmp%\temp.tmp
- :start1
- more +!tmp1! %tmp%\temp.tmp >%tmp%\tmp2.tmp
- <tmp2.tmp set /p msg=
-
-
- REM 这里写for里的代码:
- echo.!msg!
- pause
-
- set /a tmp1+=1
- if "!msg!" equ "!tmp2!" goto :eof
- set tmp2=!msg!
- goto :start1
复制代码
试了下,貌似模拟skip成功了
for的话,是酱紫:- echo off&cls
- for /f "skip=2" %%a in (1.txt) do echo.%%a&&pause
复制代码
也可当成一个练习咯。
欢迎大家补充。
作者: 老刘1号 时间: 2016-11-5 12:52
本帖最后由 老刘1号 于 2016-11-5 13:15 编辑
回复 1# 老刘1号
标题改好了……
作者: pcl_test 时间: 2016-11-5 16:40
- @echo off
- (more "1.txt"&set/p=ж)<nul>"%tmp%\$.t"
- set skip=2
- (
- :0
- set /a n+=1
- setlocal enabledelayedexpansion
- set /p str=
- if "!str:~,1!" neq "ж" (
- if !n! gtr %skip% echo;!str!
- endlocal&call :0&rem 递归有限
- )
- )<"%tmp%\$.t"
- pause>nul
复制代码
作者: CommandBatCmd 时间: 2016-11-8 19:52
****** 批次递归超出堆栈限制 ******
递归计数=782,堆栈的使用=90%
****** 批处理中止 ******
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |