본문 바로가기
개발/Web || Mobile

javaScript replaceAll

by 백아절현 2009. 2. 19.

      //문자 바꾸기, 사용법 var str = 문자열.replaceAll("a", "1"); 
      String.prototype.trim = function(){
          return this.replace(/(^s*)|(s*$)/gi, "");
      }
      String.prototype.replaceAll = function(str1, str2) {
          var temp_str = "";
          if (this.trim() != "" && str1 != str2) {
              temp_str = this.trim();
              while (temp_str.indexOf(str1) > -1){
                  temp_str = temp_str.replace(str1, str2);
              }
          }
          return temp_str;
      }

출처 : 어떤분 블로그인지 생각이 안나엽...;;

'개발 > Web || Mobile' 카테고리의 다른 글

Aquery 만쉐!  (0) 2017.08.30
ByteArrayInputStream 로 받아서 가공할때  (0) 2009.06.09
update error occurred during initialization of VM  (0) 2009.02.02
폭 구하기 및 디버그  (0) 2008.11.05
multi selectbox 예제  (0) 2008.11.04

댓글