Logo

Programming-Idioms

  • Perl
  • Lua

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!

if string.sub(p, -1, -1) == "/" then
	p=string.sub(p, 1, -2)
end

"/" is tolerated by io library regardless of a platform.
use File::Spec qw();
chomp $p, File::Spec->catdir('');
using System.IO;
p.TrimEnd(Path.DirectorySeparatorChar);

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