我将如何隔离或仅将第二个元素存储在批处理文件内的 for 循环中?
Posted
技术标签:
【中文标题】我将如何隔离或仅将第二个元素存储在批处理文件内的 for 循环中?【英文标题】:How would I isolate or just store the second element in a for loop inside a batch file? 【发布时间】:2021-07-08 01:41:30 【问题描述】:我在 Windows 批处理文件中使用循环来返回 PID 编号,我只想使用第二个 PID 编号。如何将第二个元素、第二个 PID 编号设置为变量,或者仅在循环中的命令中使用它而不是 echo
?
代码..
for /f "tokens=2 delims=," %%a in ('tasklist /FO CSV ^| findstr /I cmd.exe') do (
echo PID:%%a
)
我尝试像 PID:%%a[1]
这样索引元素。没用。
【问题讨论】:
假设您想要CMD.exe
的第二个实例,只需使用FOR
命令SKIP=
选项。然后使用GOTO
命令中断FOR
命令。
for /f "tokens=2 delims=," %%a in ('tasklist /FO CSV ^| findstr /I cmd.exe ^| findstr /N "^" ^| findstr /B "2:"') do echo PID:%%a
【参考方案1】:
也许你想要这样的代码?
@echo off
SetLocal EnableDelayedExpansion
@for /f "tokens=2 delims=," %%a in ('tasklist /FO CSV ^| findstr /I cmd.exe') do (
set /A count+=1
Set "PID[!count!]=%%~a"
)
@For /L %%i in (1,1,%count%) do echo PID[%%i] = !PID[%%i]!
echo( I want this PID = !PID[2]!
pause
【讨论】:
以上是关于我将如何隔离或仅将第二个元素存储在批处理文件内的 for 循环中?的主要内容,如果未能解决你的问题,请参考以下文章
如何将第一个 Arraylist 放在 Item 中,将第二个 Arraylist 放在 SubItem 中(在 ListView 中)?
如何将第二个表格视图的值与第一个表格视图的单击行的关系分开?