I added a space to my string, but Trim does not delete this space. Why not?
str:=tstringlist.create;
str.LoadFromFile(s);
Trim(str.strings[1]);
str.Free;
|
|
|
|
|||
|
|
|
Trim returns modified string instead of changing string you passing into it.
should work. |
|||
|
|
|
In order to make the code work as you want, do this:
If you want to save the trimmed string to the file (overriding the file), then do this:
|
|||
|
|
|
If you want to trim all strings(lines) in the string list do this:
|
|||
|
|