C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Info: This example shows the ToTitleCase method on TextInfo from System.Globalization.
VB.NET program that uses ToTitleCase
Imports System.Globalization
Module Module1
Sub Main()
Dim value As String = "dot net Codex vb.net"
Dim title As String = CultureInfo.CurrentCulture.
TextInfo.ToTitleCase(value)
Console.WriteLine(title)
End Sub
End Module
Output
The Dev Codes Vb.Net
Therefore: It is sometimes necessary to design custom algorithms to uppercase words in a string.
Uppercase First