Hello,

Just test this code below:

=== code ===

program Project1;

{$mode delphi}

uses
  SysUtils;

var
  content: string = 'x:y';
  splited: TArray<string>;
begin
  splited := content.Split([':']);
  WriteLn(Length(splited));
  ReadLn;
end.

=== /code ===

On FPC, it returns 1, on Delphi, it returns 2. And debuging the "splited"
variable, on FPC I get only and "x" value, Delphi "x" and "y".

Is this a bug?

-- 
Silvio Clécio
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal

Reply via email to