How to replace multiple spaces in a string with single space between words in C#

1 Answer

0 votes
using System;
using System.Text.RegularExpressions;

class Program
{
    static void Main() {
        string s = "  vb.net    java    php             c# ";
 
        s = Regex.Replace(s, " {2,}", " ");
        s = s.Trim();
        
        Console.WriteLine(s);
    }
}


/*
run:

vb.net java php c#

*/

 



answered Sep 7, 2019 by avibootz
...