How can I replace multiple spaces in a string with only one space in C#?
Example:
1 2 3 4 5
would be:
1 2 3 4 5
|
|
|||||||||||||||||||
|
|
I like to use:
Since it will catch runs of any kind of whitespace (e.g. tabs, newlines, etc.) and replace them with a single space. |
|||||||||||||
|
|
I think Matt's answer is the best, but I don't believe it's quite right. If you want to replace newlines, you must use:
|
|||
|
|
|||||
|
|
It's much simpler than all that:
|
|||||||||
|
|
Consolodating other answers, per Joel, and hopefully improving slightly as I go: You can do this with
Or with
|
||||
|
|
|
Another approach which uses LINQ:
|
|||
|
|
|
I just wrote a new
One of the cool things about this is that it work with collections that aren't strings, by calling ToString() on the elements. Usage is still the same:
|
|||
|
|
|
Old skool:
|
|||
|
|
Non regex way. |
|||||||||||
|