JS实现php的trim功能

调用方式 str.trim();

	//去除左右空格
	String.prototype.trim=function(){
	    return this.replace(/(^\s*)|(\s*$)/g, "");
	 }

	//去除左侧空格 
	 String.prototype.ltrim=function(){
	    return this.replace(/(^\s*)/g,"");
	 }

	//去除右侧空格 
	 String.prototype.rtrim=function(){
	    return this.replace(/(\s*$)/g,"");
	 }

你可能感兴趣的:(javascript,trim)