Einzelnen Beitrag anzeigen

danten

Registriert seit: 19. Feb 2012
Ort: Czech Republic, Prag
126 Beiträge
 
Delphi 10.1 Berlin Architect
 
#5

AW: Generation of Multiple Set Combinations

  Alt 21. Nov 2017, 11:59
You need to split the string, like

Delphi-Quellcode:
var
  array1,array2,array3: TArray<string>;
begin
  array1:= string(editArray1.Text).Split([',']);
  ...
Yes, that's exactly it.
Thank you very much.
Daniel
  Mit Zitat antworten Zitat