Contact: aviboots(AT)netvision.net.il
41,314 questions
53,829 answers
573 users
using System; using System.Text.RegularExpressions; class Program { static void Main() { String str = "Remove all spaces from string in C#"; str = Regex.Replace(str, @"\s+", ""); Console.Write(str); } } /* run: RemoveallspacesfromstringinC# */