|
|
posted on January 25, 2014 08:00
public string AddSpaceAfterComma(string myInput)
{
try
{
String text = myInput.ToString();
text = Regex.Replace(text, @",(?!\s)", x => x + " ");
return text;
}
catch (Exception ex)
{
Exceptions.ProcessModuleLoadException(this, ex);
return "";
}
}
There are currently no comments, be the first to post one!