gpt4 book ai didi

Windows CMD - 代码语句作为数组变量的值不适用于 IF 命令

转载 作者:可可西里 更新时间:2023-11-01 09:41:54 24 4
gpt4 key购买 nike

我想在 Windows 命令中创建一个自动测试数组,使用单个代码语句作为每个测试数组记录的值。以下是 $code_test[xx] 数组中前两条记录的数组定义:

set $code_test[00]=if 5 lss 10 (echo IT WORKED)
set $code_test[01]=if 5 lss 10 (echo BUG OFF)

我想使用 for/l 循环执行每个 $code_test[xx] 数组记录(这是一个测试代码语句)的 VALUE,如下所示:

for /l %%g in (0,1,1) do (
echo $code_test[0%%g]
!$code_test[0%%g]!
echo.
)

完整代码为:

@echo off
setlocal enabledelayedexpansion

set $code_test[00]=if 5 lss 10 (echo IT WORKED)
set $code_test[01]=if 5 lss 10 (echo BUG OFF)

for /l %%g in (0,1,1) do (
echo $code_test[0%%g]
!$code_test[0%%g]!
echo.
)

echo.
pause

当我执行完整代码时,当 !$code_test[0%%g]! 代码行被执行时,我收到以下错误消息:

'if' is not recognized as an internal or external command, operable program or batch file

我已阅读优秀文章 here关于如何解析 IF 命令,但我没有看到任何关于为什么我的代码失败的事情。是否有可能实现我想要完成的目标?

感谢任何帮助!

更新:当我在 set $code_test[01]=if 5 lss 10 (set/a $var1+=1) 中使用 set 命令时,我发现 @sst 是正确的 代码行:

@echo off

setlocal enabledelayedexpansion

set $var1=0
set $code_test[00]=if 5 lss 10 (echo IT WORKED)
set $code_test[01]=if 5 lss 10 (set /a $var1+=1)

for /l %%g in (0,1,1) do (
echo $code_test[0%%g]
cmd /c !$code_test[0%%g]!
echo $var1 = !$var1!
echo.
)

echo.
pause

set/a $var1+=1 命令没有按预期增加 $var1 的值。事实上,当代码行 echo $var1 = !$var1! 执行时,它会在 $var1 标签前面放置一个“1”。我还没有尝试过@Magoo 提供的解决方案。我真的很想使用 cmd/c 解决方案而不是调用子例程。我可以做些什么来使 set 命令与 cmd/c 选项一起工作吗?

最佳答案

它不能像您尝试的那样工作,因为在阶段 2 中检测并处理了 IF 命令。
但随着扩张的延迟,为时已晚。
只有命令 IF、FOR 和 REM 会出现此问题。

´CALL %%$code_test%%` 在很多情况下都有效,但对于三个命令和代码块也会失败。
目前还不清楚为什么在这种情况下它会失败,因为命令在第 2 阶段被解析但无法识别。

@stephan 的解决方案使用了一个新的 cmd 实例,它有一个缺点,每次 cmd 实例完成时都会丢失所有变量修改。

@Magoo 的解决方案因此使用百分比扩展,这应该在几乎所有情况下都没有问题。

关于Windows CMD - 代码语句作为数组变量的值不适用于 IF 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56918334/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com