trim replaceAll

trim 공백
<SCRIPT LANGUAGE="JavaScript"> 

<!-- 
//  :     
//made by yaosansi 2005-12-02 
//For more visit http://www.yaosansi.com 
// Trim() , Ltrim() , RTrim() 
String.prototype.Trim = function() 
{ 
      return this.replace(/(^\s*)|(\s*$)/g, ""); 
} 
String.prototype.LTrim = function() 
{ 
      return this.replace(/(^\s*)/g, ""); 
} 
String.prototype.RTrim = function() 
{ 
       return this.replace(/(\s*$)/g, ""); 
} 
//--> 
</SCRIPT> 

  
다음은 JS 스 크 립 트 의 '/ s 가 무엇 을 표시 하 는 지' 를 살 펴 보 겠 습 니 다.
\ s 는 빈 칸, 탭 문자, 페이지 바 꾸 기 등 모든 공백 문자 와 일치 합 니 다.등가
 
2. 확장 String 작업 의 replace All
 
String.prototype.replaceAll = function(regExp, repText){
         return this.replace(new RegExp(regExp,"g"),repText);
}

 
 
 
 
친구 사이트 전문 전자 부품 대리 구 매
 
 

좋은 웹페이지 즐겨찾기