标题: [文本处理] 批处理如何将txt文本中的指定行按指定次数重复插入 [打印本页]
作者: ly88888 时间: 2016-11-26 17:34 标题: 批处理如何将txt文本中的指定行按指定次数重复插入
本帖最后由 pcl_test 于 2016-11-26 21:00 编辑
如何将第N行复制粘贴多次
比如:
张三
李四
王五
批处理之家
处理后为:
张三
李四
王五
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
批处理之家
作者: pcl_test 时间: 2016-11-26 21:04
本帖最后由 pcl_test 于 2016-11-26 21:05 编辑
for
http://www.bathome.net/thread-5814-1-1.html
http://www.bathome.net/thread-2189-1-1.html
http://www.bathome.net/viewthread.php?tid=2530
http://bbs.bathome.net/thread-31727-1-1.html
http://www.bathome.net/thread-75-1-1.html
指定行=4
重复次数=11
逐行读取文本
当读到第4行,重复输出11次,其他行原样输出
作者: ly88888 时间: 2016-11-26 21:56
回复 2# pcl_test
完全小白啊,能给个代码吗?
作者: pcl_test 时间: 2016-11-26 22:19
回复 3# ly88888 - @echo off
- set "第几行=3"
- set "重复次数=5"
- for /f "tokens=1* delims=:" %%a in ('more +9 "%~f0"^|findstr /n .*') do (
- if "%%a" equ "%第几行%" (
- for /l %%i in (1 1 %重复次数%) do echo;%%b
- ) else echo;%%b
- )
- pause&exit
- 举
- 个
- 栗
- 子
复制代码
作者: ly88888 时间: 2016-11-27 08:44
回复 4# pcl_test
大神,需要直接处理目录下一堆,并输出为新文件名!对了,原始文件是csv
作者: ly88888 时间: 2016-11-27 20:54
回复 4# pcl_test
大神有空吗?帮忙看看吧
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |