Is there a simple way to convert a string to proper case? E.g. john smith becomes John Smith. I'm not looking for something complicated like John Resig's solution, just (hopefully) some kind of one- or two-liner.
| |||
|
feedback
|
|
Try this:
Credit: http://efficienttips.com/convert-string-title-case-javascript/ (albeit google cache for some reason) | |||
|
feedback
|
|
A slightly more elegant way, adapting Greg Dean's function:
Call it like:
| |||
|
feedback
|
|
Try to apply the text-transform CSS style to your controls | |||||||
feedback
|
Seems to work... Tested with the above, "the quick-brown, fox? /jumps/ ^over^ the ¡lazy! dog..." and "C:/program files/some vendor/their 2nd application/a file1.txt". If you want 2Nd instead of 2nd, you can change to The first form can be simplified as:
| ||||
|
feedback
|
|
Just in case you are worried about those filler words, you can always just tell the function what not to capitalize.
Hope this helps you out. | |||
|
feedback
|
|
In case this helps anyone, here's my function that is a melding of many of the posts above:
For example:
| |||
feedback
|
|
I made this function which can handle last names (so it's not title case) such as "McDonald" or "MacDonald" or "O'Toole" or "D'Orazio". It doesn't however handle German or Dutch names with "van" or "von" which are often in lower-case... I believe "de" is often lower-case too such as "Robert de Niro". These would still have to be addressed.
| |||
|
feedback
|
|
Without using regex just for reference:
| |||
|
feedback
|