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