두 개의 문자열을 받아서 첫 번째 문자열이 두 번째 문자열에 나타난 횟수를 반환하는 JavaScript 함수를 작성해야 합니다.
문자열이 −
라고 가정해 보겠습니다.const main = 'This is the is main is string';
위의 "main" 문자열에서 아래 문자열의 모양을 찾아야 합니다. -
const sub = 'is';
이 함수의 코드를 작성해 봅시다 -
예시
const main = 'This is the is main is string'; const sub = 'is'; const countAppearances = (main, sub) => { const regex = new RegExp(sub, "g"); let count = 0; main.replace(regex, (a, b) => { count++; }); return count; }; console.log(countAppearances(main, sub));
출력
다음은 콘솔의 출력입니다 -
4