Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在没有这个的情况下连接 2 个变量(参见示例) --> " <-- 现在:
set upvar="update/" echo %upvar%%1
输出: “更新/”“example.txt”
有了这个输出,我无法制作我的复制命令 - 那么我如何在没有这个“符号的情况下连接这些变量?
批处理文件不需要在字符串周围加上引号。因此,您可以简单地将第一行更改为:
set upvar=update/
这是一个链接,其中包含有关批处理文件中的字符串操作的一些有用提示。