mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2026-03-13 09:24:25 +08:00
Don't trim items when exploding to string list
This commit is contained in:
committed by
Ansgar Becker
parent
43aec429c2
commit
64c405ff74
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user