Add SpacesTo Sentence in C#
public string AddSpacesToSentence(string text)
{
if (string.IsNullOrEmpty(text))
return "";
StringBuilder newText = new StringBuilder(text.Length * 2);
newText.Append(text[0]);
for (int i = 1; i < text.Length; i++)
{
if (char.IsUpper(text[i]))
newText.Append(' ');
newText.Append(text[i]);
}
return newText.ToString();
}
{
if (string.IsNullOrEmpty(text))
return "";
StringBuilder newText = new StringBuilder(text.Length * 2);
newText.Append(text[0]);
for (int i = 1; i < text.Length; i++)
{
if (char.IsUpper(text[i]))
newText.Append(' ');
newText.Append(text[i]);
}
return newText.ToString();
}
Comments
Post a Comment