c# string capitalize first letter of each word
//Try TextInfo.ToTitleCase(String) Method
System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase("your text");
c# string capitalize first letter of each word
//Try TextInfo.ToTitleCase(String) Method
System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase("your text");
c# capitalize first letter
string text = "john smith";
// "John smith"
string firstLetterOfString = text.Substring(0, 1).ToUpper() + text.Substring(1);
// "John Smith"
// Requires Linq! using System.Linq;
string firstLetterOfEachWord =
string.Join(" ", text.Split(' ').ToList()
.ConvertAll(word =>
word.Substring(0, 1).ToUpper() + word.Substring(1)
)
);
c# make first letter uppercase
System.Console.WriteLine(char.ToUpper(str[0]) + str.Substring(1));
first sentence letter capital in c#
public static class StringExtension
{
public static string CapitalizeFirst(this string s)
{
bool IsNewSentense = true;
var result = new StringBuilder(s.Length);
for (int i = 0; i < s.Length; i++)
{
if (IsNewSentense && char.IsLetter(s[i]))
{
result.Append (char.ToUpper (s[i]));
IsNewSentense = false;
}
else
result.Append (s[i]);
if (s[i] == '!' || s[i] == '?' || s[i] == '.')
{
IsNewSentense = true;
}
}
return result.ToString();
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us