Board logo

标题: [文本处理] [分享]批处理替换文本处理特殊字符 [打印本页]

作者: Batcher    时间: 2023-8-30 15:58     标题: [分享]批处理替换文本处理特殊字符

【问题描述】

使用for循环替换文本中的username为Zhangsan,但输出后丢失了^符号,请问该怎么处理这个字符?

test.txt文本内容如下:
  1. Hi username! ^_^
  2. Welcome onboard!
  3. From Infra Team.
复制代码
有问题的代码:
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. (for /f "tokens=1* delims=:" %%a in ('type "test.txt" ^| findstr /n ".*"') do (
  4.   set "line=%%b"
  5.   if "!line!" == "" (echo,) else (
  6.     set "line=!line:username=%username%!"
  7.     echo,!line!
  8.   )
  9. )) >> %userprofile%\Desktop\"Welcome.txt"
复制代码

作者: Batcher    时间: 2023-8-30 15:59

【解决方案】
  1. @echo off
  2. cd /d "%~dp0"
  3. (for /f "tokens=1* delims=:" %%a in ('type "test.txt" ^| findstr /n ".*"') do (
  4.     set "line=%%b"
  5.     setlocal enabledelayedexpansion
  6.     if "!line!" == "" (
  7.         echo,
  8.     ) else (
  9.         echo,!line:username=%username%!
  10.     )
  11.     endlocal
  12. ))>"%userprofile%\Desktop\Welcome.txt"
复制代码

作者: Five66    时间: 2023-8-30 16:25

额,一直觉得批处理这设定挺奇怪的,都不统一
(
不开启变量延迟,用for读取文件然后set,内容中两个百分号(%)之间的不会被当成变量
相反的
开启变量延迟,用for读取文件然后set,内容中两个感叹号(!)之间的却会被当成变量
)
作者: yyz219    时间: 2023-8-30 20:32

谢谢分享哦




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2