VB.net: Capitalize first character in each word.
Posted by webinfiniteMay 10
Dim strHockey As String = “vancouver canucks”
strHOckey = StrConv(strHockey, VbStrConv.ProperCase)
MsgBox(srtHockey)
Output will be Vancouver Canucks
May 10
Dim strHockey As String = “vancouver canucks”
strHOckey = StrConv(strHockey, VbStrConv.ProperCase)
MsgBox(srtHockey)
Output will be Vancouver Canucks
No comments