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
|
|
|||||||||||||||||||
|
|
If we're talking specifically about spaces, you want to be testing specifically for spaces:
Using Also, a simpler way to only match 2 or more is:
(Of course, both of these examples can use |
|||||
|