用指定字符串替换指定内容
用指定字符串替换指定内容
发布时间:2016-12-28 来源:查字典编辑
摘要:复制代码代码如下:@echooffsetlocalenabledelayedexpansionsetfile=set/pfile=请输入要操...

复制代码 代码如下:

@echo off

setlocal enabledelayedexpansion

set file=

set /p file= 请输入要操作的文件名称(包括扩展名):

set "file=%file:"=%"

for %%i in ("%file%") do set file=%%~fi

echo.

set replaced=

set /p replaced= 请输入即将被替换的内容:

echo.

set all=

set /p all= 请输入替换字符串:

for /f "delims=" %%i in ('type "%file%"') do (

set str=%%i

set "str=!str:%replaced%=%all%!"

echo !str!>>"%file%"_tmp.txt

)

copy "%file%" "%file%"_bak.txt >nul 2>nul

move "%file%"_tmp.txt "%file%"

start "" "%file%"

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新DOS/BAT学习
热门DOS/BAT学习
脚本专栏子分类