Today I have kind of an issue. I have a file containing ligns of values and expressions like :
Code: Select all
ITEM1,10,3,50,ATK,DFS,SPE,[GOF,30,33,0];
ITEM2,1,0,,ATK,DFS,SPE,[GDF,30,60,1];
and my code is like :
Code: Select all
open file File for read
repeat for each line currentLine in File
if matchText(currenLine, "(......),...,...,...,...,...,...,[...,...,...];", vITEM) then
answer vITEM
end if
end repeat
but it doesn't work. Maybe the way I do is wrong but I'm stuck at this :/
Thanks !