在窗口中操作变量
我知道您可以直接使用变量执行一些操作,例如通过 %var:~0,4%
截断变量的末端,甚至通过 % 进行字符替换var:/=-%
.这些功能叫什么?有人有他们的文档链接吗?
I know there are a few things you can do directly with a variable, such as cut off ends of the variables via %var:~0,4%
, or even do character replacement via %var:/=-%
. What are these features called? And does anyone have a link to documentation for them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是旧的 dos 字符串操作。请参阅http://www.dostips.com/DtTipsStringManipulation.php
It's the old dos string manipulation. See http://www.dostips.com/DtTipsStringManipulation.php
我会说“环境变量替换”,如
SET /?
中所述(尽管这省略了提及参数替换命令,例如%~nxN
用于从传递的路径中提取文件名作为第 N 个命令行参数)。I would say "Environment variable substitution" as described in
SET /?
(although this omits to mention parameter substitution commands like%~nxN
for extracting a file name from a path passed as the Nth command line argument).