如何在 XP cmd 脚本中将子字符串命令应用于双百分比变量?
这是如何使用普通变量执行此操作的示例:
SET _test=123456789abcdef0
SET _result=%_test:~-7%
ECHO %_result%
:: that shows: abcdef0
但是如何处理开头带有双百分号的变量(例如 %%A
),for 循环中需要这样的变量:
FOR /D %%d IN (c:\windows\*) DO (
echo %%d
)
这有效,但是:
FOR /D %%d IN (c:\windows\*) DO (
echo %%d:~-7%
)
只需将 :~-7
复制到 echo 命令中
here is the example how you do it with normal variables:
SET _test=123456789abcdef0
SET _result=%_test:~-7%
ECHO %_result%
:: that shows: abcdef0
But what to do with variables with double percent at the begin (like %%A
), variables like this are needed in for loops:
FOR /D %%d IN (c:\windows\*) DO (
echo %%d
)
this works, but:
FOR /D %%d IN (c:\windows\*) DO (
echo %%d:~-7%
)
simply copies :~-7
into the echo command
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
替换和子字符串语法仅适用于变量,不适用于参数。
但您可以简单地将参数复制到变量中,然后使用子字符串语法。
您在这里需要延迟扩展,因为正常的 %var% 将在解析整个块时扩展,而不是在执行时扩展。
或者您可以使用
call
技术,但这非常慢并且有很多副作用。The replace and substring syntax only works for variables not for parameters.
But you can simply copy the parameter into a variable and then use the substring syntax.
You need here the delayed expansion, as a normal %var% would be expanded while parsing the complete block, not at execution time.
Or you could use the
call
technic, but this is very slow and have many side effects.