Skip to content

Instantly share code, notes, and snippets.

@cssoul
Created April 29, 2013 05:58
Show Gist options
  • Save cssoul/5479940 to your computer and use it in GitHub Desktop.
Save cssoul/5479940 to your computer and use it in GitHub Desktop.
去除字符串的前后空格
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
var str = ' abcdefg ';
console.log(str.trim());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment