Skip to content

Instantly share code, notes, and snippets.

@roblight
Created January 14, 2014 14:05
Show Gist options
  • Save roblight/8418775 to your computer and use it in GitHub Desktop.
Save roblight/8418775 to your computer and use it in GitHub Desktop.
String Functions for Javascript – trim, to camel case, to dashed, and to underscore
// From http://jamesroberts.name/blog/2010/02/22/string-functions-for-javascript-trim-to-camel-case-to-dashed-and-to-underscore/
String.prototype.trim = function(){
return this.replace(/^\s+|\s+$/g, "");
};
String.prototype.toCamel = function(){
return this.replace(/(\-[a-z])/g, function($1){return $1.toUpperCase().replace('-','');});
};
String.prototype.toDash = function(){
return this.replace(/([A-Z])/g, function($1){return "-"+$1.toLowerCase();});
};
String.prototype.toUnderscore = function(){
return this.replace(/([A-Z])/g, function($1){return "_"+$1.toLowerCase();});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment