作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了一个批处理脚本来查找和替换文本文件中的字符串。以下是我的脚本。
@echo off &setlocal
set "search=%1"
set "replace=%2"
set "textfile=Input.txt"
set "newfile=Output.txt"
(for /f "delims=" %%i in (%textfile%) do (
set "line=%%i"
setlocal enabledelayedexpansion
set "line=!line:%search%=%replace%!"
echo(!line!
endlocal
))>"%newfile%"
del %textfile%
rename %newfile% %textfile%
最佳答案
@echo off
setlocal enableextensions disabledelayedexpansion
set "search=%1"
set "replace=%2"
set "textFile=Input.txt"
for /f "delims=" %%i in ('type "%textFile%" ^& break ^> "%textFile%" ') do (
set "line=%%i"
setlocal enabledelayedexpansion
>>"%textFile%" echo(!line:%search%=%replace%!
endlocal
)
for /f
将在开始处理之前读取所有数据(由
type
命令生成)。在子进程开始执行
type
,我们包含一个覆盖文件的重定向(因此它被清空)。曾经
do
子句开始执行(文件内容在内存中待处理)输出被附加到文件中。
关于batch-file - 用于在文本文件中查找和替换字符串的批处理脚本,而无需创建额外的输出文件来存储修改后的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23075953/
我是一名优秀的程序员,十分优秀!