How do I trim spaces inside leaving only one space taking consideration of performance?
Input: AA BB Output: AA BB Input: A A Output: A A
|
|
Output:
Note: Unlike some of the other solutions here, this also replaces a single tab with a single space. If you don't have any tabs you can use " {2,}" instead which will be even faster:
|
|||||
|
|
Replace two or more spaces
|
|||
|
|
|
There are correct answers here, e.g.:
But I think it's also important to choose the correct question. Instead of asking about trimming a There may well be better ways to collapse spaces than to use a regular expression. There are certainly other ways. |
|||||||||
|