How can I convert a string into camel case using javascript regex?
"EquipmentClass name" or "Equipment className" or "equipment class name" or "Equipment Class Name"
should all become: "equipmentClassName".
Thanks.
|
How can I convert a string into camel case using javascript regex? "EquipmentClass name" or "Equipment className" or "equipment class name" or "Equipment Class Name" should all become: "equipmentClassName". Thanks. |
|||||
|
|
Looking at your code, you can achieve it with only two
Edit: Or in with a single
|
||||
|
|
|
I just ended up doing this:
I was trying to avoid chaining together multiple replace statements. Something where I'd have $1, $2, $3 in my function. But that type of grouping is hard to understand, and your mention about cross browser problems is something I never thought about as well. |
|||
|
If regexp isn't required, you might want to look at following code I made a long time ago for Twinkle:
I haven't made any performance tests, and regexp versions might or might not be faster. |
|||
|
|
|
Basic approach would be to split the string with a regex matching upper-case or spaces. Then you'd glue the pieces back together. Trick will be dealing with the various ways regex splits are broken/weird across browsers. There's a library or something that somebody wrote to fix those problems; I'll look for it. here's the link: http://blog.stevenlevithan.com/archives/cross-browser-split |
|||
|
|
|
following @Scott's readable approach, a little bit of fine tuning
// convert any string to camelCase
var toCamelCase = function(str) {
return str.toLowerCase()
.replace( /['"]/g, '' )
.replace( /\W+/g, ' ' )
.replace( / (.)/g, function($1) { return $1.toUpperCase(); })
.replace( / /g, '' );
}
|
|||
|
|
|
In Scott’s specific case I’d go with something like:
The regex will match the first character if it starts with a capital letter, and any alphabetic character following a space, i.e. 2 or 3 times in the specified strings. By spicing up the regex to
|
|||
|
|