Example :
Hello World --> HelloWorld
Method
/// <summary>
/// Method to remove space in a string example : Hello world --> HelloWorld
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
public static string removeSpace(string data)
{
Regex r = new Regex(@"\s+");
string _temp = "";
_temp = r.Replace(data, @"");
return _temp;
}
OR without static
/// <summary>
/// Method to remove space in a string example : Hello world --> HelloWorld
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
public string removeSpace(string data)
{
Regex r = new Regex(@"\s+");
string _temp = "";
_temp = r.Replace(data, @"");
return _temp;
}
By Mohd Zulkamal
NOTE : – If You have Found this post Helpful, I will appreciate if you can Share it on Facebook, Twitter and Other Social Media Sites. Thanks =)
0 comments:
Post a Comment