批处理脚本 - 删除所有空格



这用于通过替换移除字符串中的所有空格。

示例

@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
batch_script_strings.htm
广告