I have a problem with the StringSplit function:
I have this code:
$file = FileOpen("test1.txt", 0)
If $file = -1 Then
MsgBox(0, "Error", "Unable to open file.")
Exit
EndIf
While 1
$line = FileReadLine($file)
$array = StringSplit($line, ";")
GUICtrlCreateListViewItem($array[1] & "|" & $array[2] & "|" & $array[3] & "|" & $array[4] & "|" & $array[5], $listview)
If @error = -1 Then ExitLoop
Wend
FileClose($file)
And in my test1.txt is something like this:
value1;value2;value3;value4;value5
But if one of the value is empty like this:
value1;value2;;value4;value5
The script fails, because $array[3] will be empty, is there a solution to this???