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#?

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

C# Compiler Error CS0442 – ‘Property’: abstract properties cannot have private accessors Reason for the Error You’ll get this error...
This is a really simple one . Below is a simple example of an enum called “Designation” defined with the...
This blog post explain the usage of the Checked Block in .NET and how you can use them in Visual...