[javascript/정규식(regex)] 특정 문자열에서 특정 패턴이 몇 회(몇 번)나 출현하는지 확인하기

By | 11월 15, 2022
/**
 * 특정 문자열에서 해당 패턴이 발생한 횟수를 리턴
 */
export const countPattern = (str: string, pattern: RegExp) => {
  return ((str || '').match(pattern) || []).length;
};

// 점이 몇 개나 존재하는지 확인
const cnt = countPattern('aaa.bbb.ccc', /\./g);


출처

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments