Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seogi1004/f3d7f994e0d39c70cbe13e210ca7343f to your computer and use it in GitHub Desktop.
Save seogi1004/f3d7f994e0d39c70cbe13e210ca7343f to your computer and use it in GitHub Desktop.
String.prototype.trim = function() {
return (this.replace(/^[\s\xA0]+/, "").replace(/[\s\xA0]+$/, ""));
};
var sObj = new String(" Prototype Test ");
sTxt = sObj.trim();
alert("--" + sTxt + "--");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment