Wie kann ich die Funktion Explode ändern, so dass aItems vom Typ "array of string" ist?
Procedure Explode(Const aText, aPattern: String; aItems: TStrings);
also z.B
Delphi-Quellcode:
type
TStrArray = array of string;
Procedure Explode(Const aText, aPattern: String; aItems: TStrArray);