Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to remove the trailing slash from a string in Java.

I want to check if the string ends with a url, and if it does, i want to remove it.

Here is what I have:

String s = "http://almaden.ibm.com/";

s= s.replaceAll("/","");

and this:

String s = "http://almaden.ibm.com/";
length  =  s.length();
--length;
Char buff = s.charAt((length);
if(buff == '/')
{
     LOGGER.info("ends with trailing slash");
/*how to remove?*/
}
else  LOGGER.info("Doesnt end with trailing slash");

But neither work.

share|improve this question

5 Answers

up vote 8 down vote accepted

There are two options: using pattern matching (slightly slower):

s = s.replaceAll("/$", "");

or:

s = s.replaceAll("/\\z", "");

And using an if statement (slightly faster):

if (s.endsWith("/")) {
    s = s.substring(0, s.length() - 1);
}

or (a bit ugly):

s = s.substring(0, s.length() - (s.endsWith("/") ? 1 : 0));

Please note you need to use s = s..., because Strings are immutable.

share|improve this answer
Thanks for the response, Can i know if i could perform the same operation on a variable type URL, as i want to declare it as final. replaceAll doesnt seem to work on type URL Thanks for the replies again , i am a beginner in java ! – Eswar Rajesh Pinapala Mar 26 '11 at 0:06
java.net.URL can be converted to a java.lang.String using toString(). – Thomas Mueller Mar 26 '11 at 8:46

This should work better:

url.replaceFirst("/*$", "")
share|improve this answer

If you are a user of Apache Commons Lang you can take profit of the chomp method located in StringUtils

String s = "http://almaden.ibm.com/";

StringUtils.chomp(s,File.separatorChar+"")

share|improve this answer

url.replaceAll("/$", "") the $ matches the end of a string so it replaces the trailing slash if it exists.

share|improve this answer
Thanks for the response, Can i know if i could perform the same operation on a variable type URL, as i want to declare it as final. replaceAll doesnt seem to work on type URL Thanks for the replies again , i am a beginner in java ! – Eswar Rajesh Pinapala Mar 26 '11 at 0:06

As its name indicates, the replaceAll method replaces all the occurrences of the searched string with the replacement string. This is obviously not what you want. You could have found it yourself by reading the javadoc.

The second one is closer from the truth. By reading the javadoc of the String class, you'll find a useful method called substring, which extracts a substring from a string, given two indices.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.