怎样用批处理随机提取txt文档里的一行文字并显示出来 10

rt... rt 展开
 我来答
seesea2517
2013-08-01 · TA获得超过1480个赞
知道小有建树答主
回答量:512
采纳率:100%
帮助的人:556万
展开全部

这个是 test.txt 的内容:

1 aa
2 bb
3 cc
4 dd
5 ee
6 ff
7 gg
8 hh
9 ii

这个是 a.bat 的内容:

@echo off
setlocal enabledelayedexpansion

set file=test.txt
set line_num=0

for /f %%i in (%file%) do set /a line_num+=1

set /a "line=%random% %% %line_num%"
set /a line+=1

set line_num=0
for /f "tokens=*" %%i in (%file%) do (
    set /a line_num+=1
    if !line_num!==%line% (
        echo %%i
        goto :EOF
    )
)

这是测试输出:

C:\Documents and Settings\test\桌面>a.bat
7 gg

C:\Documents and Settings\test\桌面>a.bat
7 gg

C:\Documents and Settings\test\桌面>a.bat
8 hh

C:\Documents and Settings\test\桌面>a.bat
3 cc

C:\Documents and Settings\test\桌面>a.bat
5 ee

C:\Documents and Settings\test\桌面>a.bat
4 dd

C:\Documents and Settings\test\桌面>a.bat
3 cc


可以更改 a.bat 里的 test.txt 为你的文件即可。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式