검색결과 리스트
ltrim에 해당되는 글 1건
- 2011.11.30 javascript으로 trim, ltrim, rtirm 구현
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
String.prototype.trim = function()
{
return this.replace(/^\s*-,"").replace(/\s*$/, "");
};
String.prototype.ltrim = function()
{
return this.replace(/^\s+/, "");
};
String.prototype.rtrim = function()
{
return this.replace(/\s+$/, "");
};
temp = " HELLO ";
temp = temp.ltrim();
temp = temp.rtrim();
temp = temp.trim();
'-- JavaScript' 카테고리의 다른 글
Javascript URLEncode 비교 (0) | 2011.12.02 |
---|---|
javascript ajax 구현 (0) | 2011.12.01 |
Javascript Closure (0) | 2011.11.17 |
Private Members in JavaScript -Douglas Crockford (0) | 2011.11.17 |
자바스크립트에서의 함수포인터 (0) | 2007.08.09 |
RECENT COMMENT