Logo

Programming-Idioms

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

Idiom #150 Remove trailing slash

Remove the last character from the string p, if this character is a forward slash /

uses SysUtils;
begin
  AllowDirectorySeparators := AllowDirectorySeparators + ['/'];
  p := ExcludeTrailingPathDelimiter(p);
end;

This is a bit of an abuse of an existing function.
var
  Len: Integer;
begin
  Len := Length(p);
  if (Len > 0) and (p[Len] = '/') then Delete(P, Len, 1);
end;

This is the old fashioned way.
(clojure.string/replace p #"/$" "")

Ensure the regex has a $ at the end!

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