I have a sentence about 5/6 words. I want to convert first alphabet of the sentence in uppercase and rest is in lowercase in asp.net(C#)
Current Text: I LOVE CODING
Converted Text: I love coding
I have a sentence about 5/6 words. I want to convert first alphabet of the sentence in uppercase and rest is in lowercase in asp.net(C#)
Current Text: I LOVE CODING
Converted Text: I love coding
private string Solve(string sentence)
{
if (sentence != null && sentence.Length > 0)
{
return sentence[0].ToString().ToUpper() + sentence.Substring(1).ToLower();
}
else
{
return sentence;
}
}