Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal

Idiom #151 Remove string trailing path separator

Remove last character from string p, if this character is the file path separator of current platform.

Note that this also transforms unix root path "/" into the empty string!

uses LazFileUtils;
begin
  p := ChompPathDelim(p);
end.

This one will leave unix root "/" untouched and likewise "\" on Windows and WinCE.
uses SysUtils;
begin
  p := ExcludeTrailingPathDelimiter(p);
end.
using System.IO;
p.TrimEnd(Path.DirectorySeparatorChar);

New implementation...
< >
programming-idioms.org