如何在 XP cmd 脚本中将子字符串命令应用于双百分比变量?

发布于 2024-12-17 22:31:01 字数 414 浏览 1 评论 0原文

这是如何使用普通变量执行此操作的示例:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤慢歌 2024-12-24 22:31:01

替换和子字符串语法仅适用于变量,不适用于参数。

但您可以简单地将参数复制到变量中,然后使用子字符串语法。

setlocal EnableDelayedExpansion
FOR /D %%d IN (c:\windows\*) DO (
  set "var=%%d"
  echo !var:~-7!
)

您在这里需要延迟扩展,因为正常的 %var% 将在解析整个块时扩展,而不是在执行时扩展。

或者您可以使用call技术,但这非常慢并且有很多副作用。

FOR /D %%d IN (c:\windows\*) DO (
  set "var=%%d"
  call echo %%var:~-7%%
)

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.

setlocal EnableDelayedExpansion
FOR /D %%d IN (c:\windows\*) DO (
  set "var=%%d"
  echo !var:~-7!
)

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.

FOR /D %%d IN (c:\windows\*) DO (
  set "var=%%d"
  call echo %%var:~-7%%
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文