1、首先将txt 文本用word 方式打开2、从word 中选择“编辑”——全选3、“编辑”——替换 即可试试吧!祝你成功!
@echo off&setlocal enabledelayedexpansionfor /f "delims=" %%i in (123.txt) do (set ab=%%iset ab=!ab:张三=李四!echo !ab!>>temp.txt)move/y temp.txt 123.txtrem 保存为bat,放到txt的目录中,运行即可。