Contact: aviboots(AT)netvision.net.il
39,861 questions
51,782 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# */