Capitalize First Letter Of Every Word In Asp.Net

Capitalize First Letter Of Every Word In ASP.net
Like Dislike Save
 
 
Force the first letter of every word to upper case in ASP.net in one line of code.

Features
• Programming: ASP.net • Technology: How-To • Technology: Tips & Tricks • Programming: VB

Want to capitalize the first letter of every word in a string using asp.net? It's easy to do using asp.net! My code is all in VB but you can easily convert it to C# as needed.

If you have a string like "hello world" you would simply do this...

Which would output...

Hello World

If you want to be able to easily re-use this code, drop it into a function that you can call easily without having to remember the entire line of code. I use this...