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

I dont have time to get my head around regex and I need a quick answer. Platform is Java

I need the String "Some text   with spaces" to be converted to "Some text with spaces" e.g. 2 spaces to be change to 1 in a String

share|improve this question
Do you mean ONLY spaces, or do you mean "any run of consecutive whitespace characters" (which could include tabs, etc.)? – joel.neely Feb 22 '09 at 20:01

2 Answers

String a = "Some    text  with   spaces";
String b = a.replaceAll("\\s+", " ");
assert b.equals("Some text with spaces");
share|improve this answer
This will make replacements of all single spaces with a single space, not very efficient. You should only replace if there are two or more consecutively. – Chris Ballance Feb 22 '09 at 20:43
3  
@Chris - don't start optimizing the regex prematurely, I believe this will suffice. – Yuval Adam Feb 22 '09 at 21:23
4  
Yes, this solution is not as efficient as it could be, but that would only matter if this operation were taking place inside a performance hotspot. It's definitely not worth a downvote. – Alan Moore Feb 22 '09 at 21:31
1  
It's a valid point, and I would always use \s{2,} or equivalent in this situation, but practically speaking, it's just not that important. – Alan Moore Feb 23 '09 at 3:03
1  
I wouldn't be surprised if this is optimized by the libraries already to only do replacements on multiple spaces. This is readable and gets the job done. – Rontologist Feb 23 '09 at 22:30
show 1 more comment

If we're talking specifically about spaces, you want to be testing specifically for spaces:

MyString = MyString.replaceAll(" +", " ");

Using \s will result in all whitespace being replaced - sometimes desired, othertimes not.

Also, a simpler way to only match 2 or more is:

MyString = MyString.replaceAll(" {2,}", " ");

(Of course, both of these examples can use \s if any whitespace is desired to be replaced with a single space.)

share|improve this answer
It worth remembering that you need something like myString = myString.replaceAll(" +", " "); otherwise it won't do anything useful. – Peter Lawrey Feb 23 '09 at 20:27
Indeed - I think I simply copied the format of a (now deleted) answer, but will correct it. – Peter Boughton Feb 23 '09 at 22:14

Your Answer

 
discard

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