这用于通过替换删除字符串中的所有空格。
Remove All Spaces - 示例
@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
参考链接
https://www.learnfk.com/batch-script/batch-script-remove-all-spaces.html
标签:set,string,lot,无涯,Remove,echo,spaces,str,Spaces From: https://blog.51cto.com/u_14033984/8257850