foo2(X,vla,file){
nmp:=””
loop % X.Length()
{
if (X[A_Index]==””)
{
return
}
if (X.Length()!=A_Index)
{
vla := vla X[A_Index] ” ”
}
else
{
vla := vla X[A_Index]
;MsgBox “yes”
}
;MsgBox % X.Length() ” ” A_Index
}
file.WriteLine(vla)
}
foo3(X,vla,file){
vla := file.ReadLine()
loop, Parse, vla, ” ”
{
if (A_LoopField!=””)
{
X.Push(A_LoopField)
}
else
{
return
}
}
}
这是我现在的方法有没有更优解