(text) Lorem Ipsum is simply dummy, (text, simply) and typesetting industry. Lorem Ipsum has been the[/m]
var text = "(text) Lorem Ipsum is simply dummy, (text, simply) and (text, simply, qwerty) typesetting industry. Lorem Ipsum has been the[/m]";
let result = text.match(/\([^)]+?(,[^)]+)+\)/g);
console.log(result); // [ "(text, simply)", "(text, simply, qwerty)" ]