naja, ich machs mal etwas Pseudomäßig...
Code:
Array
(
Array ('e1', 'e2', 'e3'),
Array ('f1', 'f2', 'f3')
)
=> als
CSV, getrennt durch TAB und Zeilenumbruch
Dies wäre die einfachste Variante.
Delphi-Quellcode:
filecontent := '';
for i := 0 to length (Array) - 1 do
begin
for j := 0 to length (Array[i]) - 1 do
begin
filecontent := filecontent + Array[i][j];
if (j + 1 < length (Array[i])) then
begin
filecontent := filecontent + #9;
end;
end;
if (i + 1 < length (Array)) then
begin
filecontent := filecontent + #13#10;
end;
end;
//WriteToFile... (filename, filecontent);