📅  最后修改于: 2022-03-11 15:01:26.091000             🧑  作者: Mango
var regExp = /\(([^)]+)\)/;
var matches = regExp.exec("I expect five hundred dollars ($500).");
//matches[1] contains the value between the parentheses
console.log(matches[1]);