본문 바로가기

Web Program/JavaScript

자바스크립트에서 trim 사용하기

function trim(str){
	str = str.replace(/(^\s*)|(\s*$)/g, "");
	return str;
}