标题: [文本处理] 批处理怎么给指定字符串后加指定字符? [打印本页]
作者: 鲁班小仙 时间: 2022-8-19 10:41 标题: 批处理怎么给指定字符串后加指定字符?
1、我一个文件夹里面有多个.TXT文件
2、每个TXT文件里面有多行内容
3、我想给指定的字符串后面加指定字符,指定的字符串放在一个TXT里面进行检测,在TXT里面就加,不在就不加,指定字符是一样的
4、请问是否可以用BAT实现?
QQ:1181180827 红包感谢
作者: zaqmlp 时间: 2022-8-19 11:16
- <# :
- cls&echo off&cd /d "%~dp0"&rem bat存为ANSI/GB2312编码
- set "current=%cd%"
- powershell -NoProfile -ExecutionPolicy bypass "Get-Content -literal '%~f0'|Out-String|Invoke-Expression"
- pause
- exit
- #>
- $findword=@'
- 指定的字符串1
- 指定的字符串2
- '@;
-
- $suffix='添加字符';
-
- $arr=$findword.trim("`r`n") -split '[\r\n]+';
- $current=$env:current;
- $enc=[Text.Encoding]::GetEncoding('GB2312');
- $files=@(dir -literal $current|?{('.txt' -eq $_.Extension) -and ($_ -is [System.IO.FileInfo])});
- for($i=0;$i -lt $files.length;$i++){
- write-host $files[$i].FullName.Substring($current.length+1);
- $text=[IO.File]::ReadAllText($files[$i].FullName, $enc);
- for($j=0;$j -lt $arr.length;$j++){
- $newword=$arr[$j]+$suffix;
- $text=$text.replace($arr[$j], $newword);
- }
- [IO.File]::WriteAllText($files[$i].FullName, $text, $enc);
- }
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |