var str = 'Click the button to set blue, house and car to upper-case, in the paragraph below'
console.log(str);
// g 패턴에 맞는 모든문자 찾기
// i 대소문자 무시
//var res = str.replace(/blue|house|car/g, " "); //패턴에 해당되는 문자들 모두 공백으로 변경
//또는 filter
var res = str.replace(/blue|house|car/gi, function(x) {
console.log(x);
if(x =='blue') {
return "홍길동"
} else {
return "이순신";
}
});
console.log(res);


반응형
Posted by 힘없는염소