티스토리 뷰
js에서 Trim, Ltrim, Rtrim 확장하여 사용하기
대부분의 언어에서 많이 지원하는 공백제거 메서드인 Trim이 자바스크립트에서는 없기때문에
String 객체에서 Prototype으로 확장하여 사용하는 법을 소개.
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*$/, ""); };
정체는.. 정규식의 향연
by jquery library
'■ 프론트엔드 ■ > JavaScript' 카테고리의 다른 글
javascript 클래스와 jquery prototype 클래스 (0) | 2016.10.26 |
---|---|
자바스크립트 7일전 날짜와 현재 날짜 그리고 시간 구하기 (0) | 2016.09.26 |
Object.length 메서드 확장하여 사용하기 (0) | 2016.07.29 |
selectbox와 쿠키 사용하기 (1) | 2016.03.23 |
HTML Table을 엑셀로 내보내기 : Export to excel sheet on client side (11) | 2015.04.02 |
댓글