Dev./javascript

[JS] 정규표현식 괄호 안 문자 제거하기

인쥭 2022. 4. 22. 10:26
반응형
const func = 'hello(world);'
const count = 'COUNT(*)';

const reg = new RegExp(/\([^)]+\)/);
console.log(func.replace(reg, '()'));
console.log(count.replace(reg, '()'));