그래서,스스로 쓰기 시작 했다!!많은 사람들 이 모두 정규 로 하 는 것 을 보 았 다.우 리 는 할 줄 모 르 고 가장 촌 스 러 운 방법 으로 이 루어 졌 다!코드 붙 여!도움 이 되 셨 으 면 좋 겠 습 니 다!!
String.prototype.trimStart = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(0,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(trimStr.length);
}
return temp;
};
String.prototype.trimEnd = function(trimStr){
if(!trimStr){return this;}
var temp = this;
while(true){
if(temp.substr(temp.length-trimStr.length,trimStr.length)!=trimStr){
break;
}
temp = temp.substr(0,temp.length-trimStr.length);
}
return temp;
};
String.prototype.trim = function(trimStr){
var temp = trimStr;
if(!trimStr){temp=" ";}
return this.trimStart(temp).trimEnd(temp);
};
용법 잘 아 시 겠 죠!!여 긴 말 안 할 게!!!문제 가 있 으 면 지적 해 주세요!감사합니다!