我的目标是将文本文件加载到全局数组中,并且该文件包含感叹号。然后我想对数组进行冒泡排序,并将内容保存到一个新文件中。不幸的是,我什至无法将数据加载到数组中。我尝试使用 for 循环,但似乎既需要也不需要延迟扩展。当然,由于 setlocal 命令,在循环中生成的任何变量都是局部变量,对吗?因此,一旦达到 endlocal(为了切换延迟扩展),范围就消失了。我在想我需要数组是全局的,以便以后可以继续操作它。(我试图在 endlocal 的末尾添加 set 命令以将本地值传递到更高的范围,但我的尝试无济于事。)
setlocal enabledelayedexpansion
set /a count=0
set "file=list.txt"
echo Extracting titles and IDs...
for /f "usebackq delims=; tokens=1,2* skip=1" %%a in ("%file%") do (
set /a count+=1
setlocal disabledelayedexpansion
set "title=%%b"
set "gameid=%%a"
setlocal enabledelayedexpansion
for /f "delims=- tokens=1,2*" %%x in ("!gameid!") do (
echo %%y %%x "!title!"
set "entry[!count!]=%%y %%x !title!"
echo %count% - !count!
)
endlocal
endlocal
)
pause
输入文件如下所示:
ID;Title;Other;Headings;We;Dont;Need
ABC-456;My second game ever! Even better!;foo;bar;blah;blah;blah
XYZ-123;My first game ever! Yes!;foo;bar;blah;blah;blah
我的最终目标是在表单中创建一个文件
123 XYZ "My first game ever! Yes!"
456 ABC "My second game ever! Even better!"
按数值排序后。如果有人可以帮助完成第一部分(将数据加载到数组中),那将不胜感激。