C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
And: The output is "The Dev Codes". 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 = "dot net Codex";
string titleCase = CultureInfo.CurrentCulture.TextInfo.ToTitleCase(value);
Console.WriteLine(titleCase);
}
}
Output
The Dev Codes
Note: This method was suggested by Atoki as an alternative to the more elaborate implementations.