Skip to content

Instantly share code, notes, and snippets.

@scodx
Created March 23, 2012 22:55
Show Gist options
  • Save scodx/2176070 to your computer and use it in GitHub Desktop.
Save scodx/2176070 to your computer and use it in GitHub Desktop.
trim in JavaScript
/**
* Set of funcitons that trims a string in Javascipt :)
**/
function trim(stringToTrim) {
return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function ltrim(stringToTrim) {
return stringToTrim.replace(/^\s+/,"");
}
function rtrim(stringToTrim) {
return stringToTrim.replace(/\s+$/,"");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment