Folgender Code gibt mir in 10.0 "4" aus und in 10.3 "5":
Delphi-Quellcode:
procedure TForm1.FormCreate(Sender: TObject);
var arr: TArray<String>;
begin
arr := 'a;b;;;'.Split([';']);
Caption := IntToStr(Length(arr));
end;
Ist das bekannt? Gibts dafür einen guten Grund?
Michael
"Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."