I have a string like "word_count". How can I transform it to "WordCount" in an elegant way using JavaScript? My decision seems too complicated to me. I'll be very grateful for your help.
|
|||
|
|
|
Take a look at this. I don't want to just copy paste everything here, but it seems to be just what you're looking for. Here is the function modified to fit your request:
And here it is in action. |
|||||||||||||||||||
|
|
You can use a regular expression to match either a letter at the start of the string or a letter after an underscore, and use a callback to turn the letter into uppercase:
|
|||||||
|
|
Simple, like this:
If you want to add it to the String object, you can do this:
You'd call it like |
|||||||
|
|
You can use a function like the following:
|
||||
|
|
|
|||||
|
|
Using jQuery, you could do the following:
|
|||
|
|
|
New version (works with any amount of
The compressed form:
Old:
... or the compressed version:
Of course, this is used like |
||||
|
|
|
|||||
|
My decision seems too complicated to me.. Could you share it with us? Maybe it could be improved. – Darin Dimitrov Jul 12 '12 at 17:50