C# regex replace all spaces with blank

63

C# regex replace all spaces with blank -

LastName = Regex.Replace(LastName, @"\s+", "");

Comments

Submit
0 Comments