标题: [文本处理] 批处理BAT怎样每5行提取文本写入单个txt文件? [打印本页]
作者: cobinzhang 时间: 2014-5-13 22:38 标题: 批处理BAT怎样每5行提取文本写入单个txt文件?
大概有20万*5行txt文本,我想按顺序每5行文件(每5行就是指1-5,6-10,11-15.....)提取出来写入单个txt文件,按顺序命名为1.txt 2.txt 3.txt .....
修改了下面这样的代码,开始几个文件运行还行,后来发现输出的文件中行的顺序错位了,大侠帮我修改一下,附上示例数据- @echo off
- set dest=e:\result\tiqu
- setlocal enabledelayedexpansion
- set/a cc=1
- for /f "delims=" %%i in (aa.txt) do (
- set /a dd =cc+2
- set /a dd =cc+3
- set /a dd =cc+4
- set /a dd= dd/5
- echo %%i >> "%dest%!dd!.txt"
- set /a cc=cc+1
- )
复制代码
作者: CrLf 时间: 2014-5-13 23:22
本帖最后由 CrLf 于 2014-5-14 21:29 编辑
行数多的时候,尽量用 gawk 之类的来处理- @echo off
- md test\
- cd test
- gawk "{print $0>int((NR-1)/5)+1 \".txt\"}" ..\example.txt
- pause
复制代码
作者: cobinzhang 时间: 2014-5-14 09:39
回复 2# CrLf
多谢大版主,不过这个代码运行不起来啊
作者: zhanglei1371 时间: 2014-5-14 10:15
回复 3# cobinzhang
前提是你要下载了gawk.放到windows目录
作者: cobinzhang 时间: 2014-5-14 15:29
回复 4# zhanglei1371
哦,明白了。不过这个gawk怎么用?我下载的是这个http://hi.baidu.com/yanghuijie163/item/9bca0b3f5ec93ffede2221b5,
单纯下载的额gawk.exe 文件复制到windows目录下运行不起来,提示缺少nysy-1.0 dll
作者: Batcher 时间: 2014-5-14 15:38
回复 5# cobinzhang
下载这个试试:
http://code.google.com/p/gnu-on-windows/downloads/list
作者: cobinzhang 时间: 2014-5-14 15:46
回复 6# Batcher
谢谢版主,这个gawk.exe运行正常,我将它考到windows目录。可是二楼版主写的程序还是运行不起来
作者: HappyBirthday 时间: 2014-5-14 16:48
- set dest=e:\result\tiqu\
- setlocal enabledelayedexpansion
- set /a line=0
- set /a num=1
- for /f "delims=" %%i in (aa.txt) do (
- set /a line+=1
- set /a mod=!line!%%5
- if !mod!==0 (
- set /a num+=1
- )
- echo %%i>>"%dest%!num!.txt"
- echo line=!line! mod=!mod! num=!num!
- )
复制代码
作者: CrLf 时间: 2014-5-14 18:06
回复 7# cobinzhang
笔误,已修改
作者: cobinzhang 时间: 2014-5-14 20:34
回复 9# CrLf
很不幸,还是不幸,处理出来第一个文件只有4行,不知道怎么修改
作者: CrLf 时间: 2014-5-14 21:29
回复 10# cobinzhang
已修改
作者: cobinzhang 时间: 2014-5-14 21:49
回复 11# CrLf
多谢版主,运行结果完美。用gawk相当的快
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |