Javascript

imported>Bbon님의 2013년 12월 13일 (금) 01:33 판 (새 문서: == 자주 사용하는 함수 구현 == === trim 구현 === <syntaxhighlight lang="javascript">String.prototype.trim = function () { return this.replace(/(^\s*)|(\s*$)/g, ""); }</...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

자주 사용하는 함수 구현

trim 구현

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