Logo

Programming-Idioms

  • PHP
  • C#

Idiom #150 Remove trailing slash

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

p = p.TrimEnd('/');
$p = rtrim($p, '/');

$p will have all the trailing slashes removed
(clojure.string/replace p #"/$" "")

Ensure the regex has a $ at the end!

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