B
Brian Henry
is there function to do proper case formatting on a string? FoxPro use to
have a proper function that did this for you... thanks
have a proper function that did this for you... thanks
* "Brian Henry said:is there function to do proper case formatting on a string?
Herfried K. Wagner said:\\\
Dim s As String = StrConv("hello world!", VbStrConv.ProperCase)
///
No it would return ( and display in this case ) a New string where all the
characters from the origional are converted to ToUpper. Strings in .NET are
immutable, you cannot convert them once they are created.
* "Brian Henry said:but wouldn't toupper convert every char in the string to uppercase? where
proper case would just say "My text string. This is fun." as where toupper
would be "MY TEXT STRING. THIS IS FUN."
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.