C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
It capitalizes each word in a string. You could develop character-based algorithms to accomplish this goal. But the System.Globalization namespace provides ToTitleCase, which can be simpler.
Example. This program shows how to call ToTitleCase and the string value it returns. To access CultureInfo, you need to include the System.Globalization namespace. The input to the program is "The Developer Blog".
And: The output is "Dot Net Perls". The d, n, and p are converted to uppercase.
C# program that uses ToTitleCase using System; using System.Globalization; class Program { static void Main() { string value = "The Developer Blog"; string titleCase = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(value); Console.WriteLine(titleCase); } } Output Dot Net Perls
Discussion. When should ToTitleCase be used? And when should a custom implementation be used? Programs often have edge cases. A custom implementation can provide better support for certain words. And performance can be improved in custom algorithms.
Note: This method was suggested by Atoki as an alternative to the more elaborate implementations.
Summary. We looked at the ToTitleCase method on the TextInfo type. There are other methods available on TextInfo. They are detailed in a separate article. ToTitleCase can simplify your program, but it cannot be easily customized.