Created
September 3, 2012 17:06
-
-
Save minardimedia/3610889 to your computer and use it in GitHub Desktop.
String Functions for Javascript – trim, to camel case, to dashed, and to underscore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Trim String | |
String.prototype.trim = function(){ | |
return this.replace(/^\s+|\s+$/g, ""); | |
}; | |
To Camel Case | |
String.prototype.toCamel = function(){ | |
return this.replace(/(\-[a-z])/g, function($1){return $1.toUpperCase().replace('-','');}); | |
}; | |
To Dashed from Camel Case | |
String.prototype.toDash = function(){ | |
return this.replace(/([A-Z])/g, function($1){return "-"+$1.toLowerCase();}); | |
}; | |
To Underscore from Camel Case | |
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