把批处理中设置的变量作为参数传递

2024-12-26 17:51:45
推荐回答(1个)
回答1:

%m:~n,1% 这里面的n前后没有%就不会被cmd识别为变量了。

@echo off
set n=1
set m=123456
call echo %%m:~%n%,1%%