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

how to remove the \n, \t and spaces between the strings in java?

share|improve this question
1  
What does 'between the strings' mean? Could you post an example? – Bart Kiers Mar 17 '10 at 10:13

2 Answers

up vote 9 down vote accepted
str.replaceAll("\\s+", "");

\s A whitespace character: [ \t\n\x0B\f\r]

java.util.regex.Pattern has all the predefined classes.

share|improve this answer
how to remove only \n \t not spaces – Praveen Mar 17 '10 at 10:27
the same way, but using \\n+\\t+ instead – Bozho Mar 17 '10 at 10:33
2  
But note that \\n+\\t+ only matches new lines followed by tabs. Probably [\t\n]+ is meant... – Bart Kiers Mar 17 '10 at 10:45
yes, thanks. my bad. – Bozho Mar 17 '10 at 11:40

Use String.replaceAll with a regular expression to remove all whitespace:

s = s.replaceAll("\\s+", "");
share|improve this answer
Ah, come on, Mark, you even go as far as removing the fun of those annoying RTFM questions. – Riduidel Mar 17 '10 at 10:14

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.