这用于通过替换删除字符串中的所有空格。
示例
@echo off
set str=This string has a lot of spaces
echo %str%
set str=%str:=%
echo %str%
关于上述程序的关键是,:=
操作符用于从字符串中删除所有空格。
以上命令产生以下输出。
This string has a lot of spaces
Thisstringhasalotofspaces
以下是纠正/补充内容:
set str=%str: =%(冒号和等号中间漏了一个空格) 提交时间:2022-04-29