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

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

You May Also Like

This C# program calculates and displays an upper triangular matrix based on user input. Problem Statement: The program takes the...
This C# program serves as a demonstration of bitwise operators, which are fundamental operators used for manipulating individual bits in...
This C# program is designed to interchange or swap the columns of a matrix. A matrix is a two-dimensional array...