본문 바로가기

웹 개발

script에서 trim 사용하기.


String.prototype.trim = function(){
	return this.replace(/(^\s*)|(\s*$)/gi, "");
};
String.prototype.ltrim = function(){
	return this.replace(/(^\s+)/, "");
};
String.prototype.rtrim = function(){
	return this.replace(/(\s+$)/, "");
};

사용법은..
var str = 'ABC   ' ;
str.trim();