정규식을 통한 trim구현

function trim(str) {
    return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}

정규표현식
^ - 처음시작(beginningof line)
\s - 공백(whitespace character)
$ - 끝라인(end of line)


출처 : http://junyong.tistory.com/31

+ Recent posts