您好我正在尝试搜索文件中的特定字符串,并希望将该字符串替换为批处理文件中的其他字符串。
例如,我的a.txt包含以下数据:
line 1: Name: abc
line 2: Some words then age: 24 something
line 3: country:xyz
现在我想找到“age:”并想要替换为
line 2: Some words then age: 30 something
并保存在相同的a.txt中。
感谢您的帮助
答案 0 :(得分:0)
这将使用age: (whatever)
替换text.inf中的age: 30
的每个实例:
for /f "tokens=1* delims=: " %%x in (text.inf) do (
if "%%x"=="age" (
echo %%x: 30 >> outfile.tmp
) else (
echo %%x: %%y >> outfile.tmp
)
)
move /y outfile.tmp text.inf
好的,你的新规格让这更难,但是......
setlocal enabledelayedexpansion
set line=
for /f "tokens=* delims= " %%x in (text.inf) do call :workit %%x
move /y outfile.tmp text.inf
endlocal
goto :eof
:workit
set line=
:workitloop
set line=!line! %1
if "%1"=="age:" (
set line=!line! 30
shift
shift
goto :workitloop
) else if "%1"=="" (
echo !line:~1!>> outfile.tmp
) else (
shift
goto :workitloop
)
goto :eof