[Javascript] replace에서 gi?가 뭐야??
replace에서 gi?가 뭐야?? 우선 이걸 알기 위해선 "replace()" 에 대해서 먼저 알아야 해요. replace()함수는 문자열에서 변경하려는 문자열이 여러번 반복될 경우, 첫 번째로 발견된 문자열만 치환애줘요. const str = "hello test word"; console.log(str.replace(/t/, 'a')) > hello test word > hello aest word g :발생한 모든 pattern에 대한 전역 검색 > i : 대/소문자 구분 안함 > m : 모든줄 검색 gi = 문자전체, 대소문자 구문 없이 변경이라는 옵션이 되는 거에요. const str = "hello Test word"; console.log(str.replace(/t/gi, 'a')) > h..
2023.02.11