Choose Category
using System.Text.RegularExpressions;
Regex.Replace(text, @"\s", "")
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace ForgetCode { class Program { static void Main(string[] args) { string text = " My name is Forget Code "; Console.WriteLine(Regex.Replace(text, @"\s", "")); } } }