Is it possible to uppercase the first character of each word using regex?
I\'m going to be using this in VB.net (SSIS)
Use ProperCase function:
ProperCase
Dim Str As String = "the quick brown fox jumps over the lazy dog" Dim NewStr As String = StrConv(Str, VbStrConv.ProperCase)