标题: [文本处理] 求批量提取字符串的批处理 [打印本页]
作者: 那哔好神 时间: 2019-4-10 13:51 标题: 求批量提取字符串的批处理
有几千个像上图中的TXT,需要从这些txt中提取以《"T》开头(不含T)的22位字符串(如010000050000201910001),然后以《22位字符串.jpg,其他,22位字符串》的形式位写入当前目录下的dperson.txt中。研究了一上午tokens,delims,for还是不知道怎么搞,请各位大神帮助。
PS:
1、有些行的22位字符串数据是空的,就不用提取了。
2、有些行的22为字符串不是纯数字的
3、最终需求dperson.txt内效果如下:
010000050000201910001.jpg,其他,010000050000201910001
010000050000201910003.jpg,其他,010000050000201910003
010000050000201910005.jpg,其他,010000050000201910005
T10000050000201910006.jpg,其他,T10000050000201910006
0T0000050000201910007.jpg,其他,0T0000050000201910007
... ...
作者: zaqmlp 时间: 2019-4-10 14:28
- @echo off
- set info=互助互利,支付宝扫码头像,感谢赞助
- rem 有问题,可加QQ956535081及时沟通
- title %info%
- start mshta VBScript:Execute("msgbox(""%info%""):close")
- cd /d "%~dp0"
- set "结果=dperson.txt"
- powershell ^
- [System.Collections.ArrayList]$s=@();^
- dir *.txt^|?{$_ -is [System.IO.FileInfo]}^|%%{^
- write-host $_.Name;^
- $text=@(gc $_.FullName);^
- for($i=0;$i -lt $text.length;$i++){^
- if($text[$i].trim() -match '^^\""T([^^\""]+)'){^
- [void]$s.Add(''+$matches[1]+'.jpg,其他,'+$matches[1]);^
- };^
- };^
- };^
- [IO.File]::WriteAllLines('%结果%', $s, [Text.Encoding]::Default);
- pause
复制代码
作者: Batcher 时间: 2019-4-10 14:50
- @echo off
- setlocal enabledelayedexpansion
- (for /f "delims=" %%a in ('dir /b /a-d *.txt ^| findstr /v /x "dperson.txt"') do (
- for /f delims^=^" %%b in ('type "%%a"') do (
- set "str=%%b"
- if "!str:~0,1!" equ "T" (
- echo !str:~1!.jpg,其他,!str:~1!
- )
- )
- ))>"dperson.txt"
复制代码
作者: 那哔好神 时间: 2019-4-10 15:12
已解决,谢谢楼上二位
作者: zaqmlp 时间: 2019-4-10 15:27
回复 4# 那哔好神
嗯,感谢还是发个红包实际点
作者: 那哔好神 时间: 2019-4-15 17:23
回复 5# zaqmlp
这几天事情比较多,已发5元,谢谢
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |