728x90 반응형 string객체1 [ 공통 ] javascript String 객체 Util성(실개발자 유용한 꿀팁) //----------------------------------------------------------------------------- // 문자열내의 _findValue를 모두 _replaceValue로 바꾸어 준다 // ex : str.replaceAll("xx","bb"); // @return : String //----------------------------------------------------------------------------- String.prototype.replaceAll = function(_findValue, _replaceValue) { return this.replace(new RegExp(_findValue,"g"), _replaceValue); }; //.. 개발/WEB PROGRAMMING 2020. 3. 26. 이전 1 다음 728x90 반응형