Logo

Programming-Idioms

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

Idiom #150 Remove trailing slash

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

int n = p.length() - 1;
while (n != 0 && p.charAt(n) == '/')
    p = p.substring(0, n--);
p = p.replaceAll("/$", "");

$ here means "end of string"
p = p.replaceAll("(?<!^)/+$", "");
if (p.endsWith("/")) {
    p = p.substring(0, p.length() - 1);
}
(clojure.string/replace p #"/$" "")

Ensure the regex has a $ at the end!

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