Insert Spaces Before Capital Letters In Single String
http://stackoverflow.com/questions/272633/add-spaces-before-capital-letters
This is good to get a human readable description from an enumeration value.
System.Text.RegularExpressions.Regex.Replace(value, “[A-Z]“, ” ″)
string AddSpacesToSentence(string text)
{
if (string.IsNullOrEmpty(text))
return...
[read more]
Submit a review:
Login required.