javaScript replace1 javaScript replaceAll //문자 바꾸기, 사용법 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; } 출처 : 어떤분 블로그인지 생각이 안나엽...;; 2009. 2. 19. 이전 1 다음