批处理脚本 - 删除所有空格
这用于通过替换删除字符串中的所有空格。
示例
@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