Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
trim whitespace from a string?

Is there a convenience method to strip any leading or trailing spaces from a Java String?

Something like:

String myString = "  keep this  ";
String stripppedString = myString.strip();
System.out.println("no spaces:" + strippedString);

Result:

no spaces:keep this

myString.replace(" ","") would replace the space between keep and this.

Thanks

share|improve this question
5  
how did this get +2? – RMT Jul 11 '11 at 15:46
2  
@RMT: Just like one of the answers getting +6. – Lukas Eder Jul 11 '11 at 15:48
2  
Yeah, it's not a very accurate measurement anyway. Trivial answers quickly get +10 because of all the noobs who understand it. Whereas the really tricky questions with the awesome elaborate answers don't get the necessary attention... Oh well, I did get my own personal +3 here :) – Lukas Eder Jul 11 '11 at 15:58
2  
It's unfortunate, but it means that the answers here were useful to people. I upvoted for that reason only. – Alex D Mar 12 '12 at 8:32

marked as duplicate by Lukas Eder, jzd, Jerry Coffin, Caleb, Neil Knight Jul 11 '11 at 18:25

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 61 down vote accepted

You can try the trim() method.

String newString = oldString.trim();

Take a look at javadocs

share|improve this answer
3  
+1 to make this answer even more awesome! :D – Lukas Eder Jul 11 '11 at 15:59

From the docs:

String.trim();
share|improve this answer

Like this

myString = myString.trim();
share|improve this answer

trim() is your choice, but if you want to use replace method -- which might be more flexiable, you can try the following:

String stripppedString = myString.replaceAll("(^ )|( $)", "");
share|improve this answer

Use String#trim() method or myString.replaceAll("^\\s+|\\s+$", "") for trim both the end.

For left trim:

myString.replaceAll("^\\s+", "");

For right trim:

myString.replaceAll("\\s+$", "");
share|improve this answer
This has the added benefit of being able to tell how many leading/trailing spaces there are in the string. – Blazej Czapp Feb 14 at 9:16

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