/**
* 특정 문자열에서 해당 패턴이 발생한 횟수를 리턴
*/
export const countPattern = (str: string, pattern: RegExp) => {
return ((str || '').match(pattern) || []).length;
};
// 점이 몇 개나 존재하는지 확인
const cnt = countPattern('aaa.bbb.ccc', /\./g);
Subscribe
Login
0 Comments