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

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
share|improve this question
8  
I guess the answer is to render the string as HTML. – thoroughly Oct 15 '08 at 22:11
1  
lol, yeah. Thanks for editing it. – ine Oct 15 '08 at 22:12
a state machine can easily do it, but it's probably overkill if you need it only to remove spaces – Adrian Jan 6 '12 at 19:20

11 Answers

up vote 120 down vote accepted
RegexOptions options = RegexOptions.None;
Regex regex = new Regex(@"[ ]{2,}", options);     
tempo = regex.Replace(tempo, @" ");
share|improve this answer
I have copy and paste that and it works. I really do not like REgex but this time it saves my life. – Pokus Oct 15 '08 at 22:22
3  
@Craig a comment would suffice, IMO. // This block replaces multiple spaces with one... :) – paulwhit Oct 15 '08 at 23:40
3  
Really, RegEx is overkill for this. – Joel Coehoorn Oct 28 '08 at 15:01
2  
@Joel: Can't agree. I'm actually sure that this way is more efficient than yours for large enough strings and can be done in one single line. Where's the overkill? – Konrad Rudolph Nov 23 '08 at 16:27
9  
@Oscar Joel’s code isn’t a simple loop through all characters! It’s a hidden nested loop that has a quadratic worst case. This regular expression, by contrast, is linear, only builds up a single string (= drastically reduced allocation costs compared to Joel’s code) and furthermore the engine can optimize the hell out of it (to be honest, I doubt the .NET regex is smart enough for this but in theory this regular expression can be implemented so cheaply that it’s not even funny any more; it only needs a DFA with three states, one transition each, and no additional information). – Konrad Rudolph Mar 4 '11 at 10:17
show 10 more comments

I like to use:

myString = Regex.Replace(myString, @"\s+", " ");

Since it will catch runs of any kind of whitespace (e.g. tabs, newlines, etc.) and replace them with a single space.

share|improve this answer
fav ............(15 characters) – xster Jul 8 '10 at 6:12
4  
excellent simplicity – Todd Moses Dec 8 '10 at 18:41
6  
Slight modification: Regex.Replace(source, @"(\s)\s+", "$1"); This will return the first whitespace type found. So if you have 5 tabs, it will return a tab. Incase someone prefers this. – F.B. ten Kate May 14 '12 at 12:56
Possible, solution with /\s\s+/ is faster. see this comment: stackoverflow.com/a/1981837/907576 – radistao Nov 5 '12 at 7:58

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:

myString = Regex.Replace(myString, @"\s+", " ", RegexOptions.Multiline);
share|improve this answer
RegexOptions.Multiline changes the meaning of ^ and $ so they match the beginning and end of every line ($ = \n), instead of the whole multi-line string. Because \s is equivalent to [ \f\n\r\t\v] the newlines should be replaced even if Multiline option is off. – SushiGuy Jun 5 '12 at 23:27
string xyz = "1   2   3   4   5";
xyz = string.Join( " ", xyz.Split( new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries ));
share|improve this answer
1  
Regex works too. – tvanfosson Oct 15 '08 at 22:13
myString = Regex.Replace(myString, " {2,}", " ");
share|improve this answer

It's much simpler than all that:

while(str.Contains("  ")) str = str.Replace("  ", " ");
share|improve this answer
7  
This will be far less efficient than the regex " {2,}" if the string contains sequences of 3 or more spaces. – Jan Goyvaerts Nov 20 '08 at 7:22
@JanGoyvaerts: Even with 10 spaces, the regex was slower when I made a quick and dirty test. That being said, it only takes one giant substring full of spaces to completely kill performance of the while loop. For fairness, I used I used RegexOptions.Compiled, rather than the slower Regex.Replace. – Brian Feb 6 at 15:37
RegexOptions.Compiled adds a lot of overhead compiling the regex into IL. Don't use it unless your application will use the regex often enough or on large enough strings that the increased matching speed offsets the decreased compilation speed. – Jan Goyvaerts Feb 7 at 4:26

Consolodating other answers, per Joel, and hopefully improving slightly as I go:

You can do this with Regex.Replace():

string s = Regex.Replace (
    "   1  2    4 5", 
    @"[ ]{2,}", 
    " "
    );

Or with String.Split():

static class StringExtensions
{
    public static string Join(this IList<string> value, string separator)
    {
        return string.Join(separator, value.ToArray());
    }
}

//...

string s = "     1  2    4 5".Split (
    " ".ToCharArray(), 
    StringSplitOptions.RemoveEmptyEntries
    ).Join (" ");
share|improve this answer

Another approach which uses LINQ:

 var list = str.Split(' ').Where(s => !string.IsNullOrWhiteSpace(s));
 str = string.Join(" ", list);
share|improve this answer

I just wrote a new Join that I like, so I thought I'd re-answer, with it:

public static string Join<T>(this IEnumerable<T> source, string separator)
{
    return string.Join(separator, source.Select(e => e.ToString()).ToArray());
}

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:

//...

string s = "     1  2    4 5".Split (
    " ".ToCharArray(), 
    StringSplitOptions.RemoveEmptyEntries
    ).Join (" ");
share|improve this answer
why create an extension method? why not just use string.Join()? – spoon16 Nov 20 '08 at 3:45

Old skool:

string oldText = "   1 2  3   4    5     ";
string newText = oldText
                    .Replace("  ", " " + (char)22 )
                    .Replace( (char)22 + " ", "" )
                    .Replace( (char)22 + "", "" );

Assert.That( newText, Is.EqualTo( " 1 2 3 4 5 " ) );
share|improve this answer
Assumes text does not already contain (char)22 – onedaywhen Nov 30 '12 at 9:27
while (str.IndexOf("  ") != -1)
  str = str.Replace("  ", " ");

Non regex way.

share|improve this answer
<> work in C#, I thought is was != – Pokus Oct 15 '08 at 22:16
Replace uses a regex...i think...no big deal though – jjnguy Oct 15 '08 at 22:16
Your right, != is correct in C#. Too many languages running through my head! – Craig Oct 15 '08 at 22:25
9  
This method will createas many strings in memory as there are double-space occurrences in the string. Not good. – Robert C. Barth Oct 17 '08 at 0:15

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.