Expand To Show Full Article
How to capitalize first character of every word of a string in C#? - Developer Publish

How to capitalize first character of every word of a string in C#?

If you need to convert the first letter of every word of a sentence to caps lock, you can use the ToTitleCase method defined in the System.Globalization.CultureInfo.CurrentCulture.TextInfo.

The ToTitleCase will return the string with the first letter of every word being capitalized.

How to capitalize first character of every word of a string in C#?

// How to Capitalize first character of every word of a sentence in C#?

private static void Main(string[] args)

{

string Result = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase("ginktage is a programming and technology blog");

Console.WriteLine(Result);

Console.ReadLine();

}

How to capitalize first character of every word of a string in C#?