regex c# attribute remove whitespace code example
Example 1: how to remove space between string in c#
string str = "C Sharp";
str = Regex.Replace(str, @"\s", "");
Example 2: remove whitespace between string c#
string str = "C Sharp";
str = Regex.Replace(str, @"\s", "");