remove all spaces from a 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: how to remove space between string in c#
string str = "C Sharp";
str = Regex.Replace(str, @"\s", "");