Don't trim items when exploding to string list

This commit is contained in:
Francois Botha
2020-03-04 23:04:33 +02:00
committed by Ansgar Becker
parent 43aec429c2
commit 64c405ff74

View File

@ -444,7 +444,7 @@ begin
Result.Add(Text);
break;
end;
Item := Trim(Copy(Text, 1, i-1));
Item := Copy(Text, 1, i-1);
Result.Add(Item);
Delete(Text, 1, i-1+Length(Separator));
end;