JavaScript/REGEX: Inside a double set of parenthesis
Using JavaScript and Regular Expressions, how can I get the content inside a double set of parenthesis?
getInside2p('http://example.com/dir/(S(u53ouszaxo3dis55xhfm0l45))/page.aspx?xyz'); // should return 'u53ouszaxo3dis55xhfm0l45'getInside2p('xyz((hello))123'); // should return 'hello'getInside2p('Hello World'); // should return ''