「JavaScript」括弧を含む文字列を削除する方法

JSコード
var str="welcome(world)";
var nstr = str.replace(/\([^\)]*\)/g,"");

JavaScript

Posted by arkgame