how to remove all spaces in string c# code example
Example 1: c# remove spaces from string
string str = "This is a test";
str = str.Replace(" ", String.Empty);
// Output: Thisisatest
Example 2: C# regex replace all spaces with blank
LastName = Regex.Replace(LastName, @"\s+", "");