Logo

Programming-Idioms

  • C++

Idiom #150 Remove trailing slash

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

const slashscrape = p => (
  p.slice (-1) === '/' ?
    p.slice (0, -1) :
    p
)
 if('/' == s.back())
  s.pop_back();
(clojure.string/replace p #"/$" "")

Ensure the regex has a $ at the end!

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