Camel underscore uppercase string of the form, you can change the notation.
This code is required to JQUERY library.
$.camelToCapital=function(str){ return str.replace(/([A-Z])/g,function(arg){ return '_'+arg.toLowerCase(); }).toUpperCase(); }; $.capitalToCamel=function(str){ return str.toLowerCase().replace(/(\_[a-z])/g,function(arg){ return arg.toUpperCase().replace('_',''); }); };
$.camelToCapital("testAhndoori"); >> TEST_AHNDOORI $.capitalToCamel("AHNDOORI_BLOGSPOT_KR"); >> kaudoBlogspotKr
No comments:
Post a Comment