Remove all whitespace from C# string with regex May 18, 2023 by Tarik Instead of a RegEx use Replace for something that simple: LastName = LastName.Replace(" ", String.Empty);