Answers for "javascript get string between two parentheses"

0

javascript get string between two parentheses

var regExp = /\(([^)]+)\)/;
var matches = regExp.exec("I expect five hundred dollars ($500).");

//matches[1] contains the value between the parentheses
console.log(matches[1]);
Posted by: Guest on April-23-2021

Code answers related to "javascript get string between two parentheses"

Code answers related to "Javascript"

Browse Popular Code Answers by Language