我编写了一个脚本,其中包含一个函数,该函数应该遍历一个列表并在给定所述列表中项目的索引的情况下返回一个值。我有一个名为: 的函数:find
应该有 2 个参数:列表和项目位置。我不确定如何处理函数中的多个参数。如果我在循环内替换为 并从传递给的参数列表中删除 ,%LIST%
则此脚本运行良好,但我真的很想知道如何传递多个参数。我认为它们只是作为一个完整的字符串传递给函数......%MY_LIST%
%MY_LIST%
call :find
@echo off
setlocal enableDelayedExpansion
cls
:: ----------------------------------------------------------
:: Variable declarations
:: ----------------------------------------------------------
set RETURN=-1
set MY_LIST=("foo" "bar" "baz")
set TARGET_INDEX=1
:: ----------------------------------------------------------
:: Main procedure
:: ----------------------------------------------------------
call :log "Finding item %TARGET_INDEX%..."
call :find %MY_LIST% %TARGET_INDEX%
call :log "The value is: %RETURN%"
goto Exit
:: ----------------------------------------------------------
:: Function declarations
:: ----------------------------------------------------------
:find
call :log "Called `:find` with params: [%*]"
set /a i=0
set LIST=%~1 & shift
for %%a in %LIST% do (
if !i! == %~1 (
set RETURN=%%a
)
set /a i=!i!+1
)
goto:EOF
:printDate
for /f "tokens=2-4 delims=/ " %%a in ('echo %DATE%') do (
set mydate=%%c/%%a/%%b)
for /f "tokens=1-3 delims=/:./ " %%a in ('echo %TIME%') do (
set mytime=%%a:%%b:%%c)
echo|set /p="[%mydate% %mytime%] "
goto:EOF
:log
call :printDate
echo %~1
goto:EOF
:: ----------------------------------------------------------
:: End of script
:: ----------------------------------------------------------
:Exit
更新
我的脚本现在可以正常工作了;感谢 nephi12。http://pastebin.com/xGdFWmnM