Hallo Greeny
Das Explode ist nicht das problem, sondern das erstellen des xyi: array of array of double;
Delphi-Quellcode:
...
var: xyi: array of array of double;
...
List1:=TStringList.Create;
try
List1.LoadFromFile('TabSeparated.txt');
List2:=explode(#9,List1[i]);
// setLength(xi,List1.Count);
// setLength(yi,List1.Count);
setlength(xyi,List1.Count,List2.Count);
for i:=0 to List1.Count-1 do
begin
List2:=explode(#9,List1[i]);
// xi[i]:= StrToDateTime(List2[0], MySettings); // <- test ok
// yi[i]:= StrToFloat(List2[3]); // <- test ok
xyi:= ?? // [b]<-hier das problem. wie machen?[/b]
List2.free;
end;
finally
List1.Free;