DOS 命令如何连接字符串设:set a="a a"set b="b b"
如何操作这两个变量得到"a ab b"
echo %a%%b%
set a="a a" set b="b b" set c=%a:~1,-1%%b:~1,-1% echo %c% pause