hi leute, ich will ein csv file einlesen
bsp
1; Berlin
nun möchte ich dass 1 bei Array[$i][1]
und Berlin bei Array[$i][2]
steht das mit Berlin klappt aber nicht
Func Dropdown_feed() dim $string
$csv = FileOpen($bzpath) $anzahl = _FileCountLines($bzpath) MsgBox(0,"TEST", $anzahl)
Global $zeilen[$anzahl+1][2]
For $i = 0 to $anzahl $string = FileReadLine($bzpath,$i) For $j = 0 To 1 $zeilen[$i][0] = $i $zeilen[$i][1] = StringSplit($string, ";") $zeilen[$i][2] = StringSplit($string, ";") Next Next
_ArrayDisplay($zeilen,"TEST")EndFunc