Logo

Programming-Idioms

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

Idiom #150 Remove trailing slash

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

(clojure.string/replace p #"/$" "")

Ensure the regex has a $ at the end!
(defn remove-ending-slash
  [p]
  (if (clojure.string/ends-with? p "/")
    (subs p 0 (dec (count p)))
    s))

Since Clojure data is immutable by default and will return a new string, created a function to handle this.
 if('/' == s.back())
  s.pop_back();

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