I'm trying to capture all the phrases in quotes and in between parenthesis in the the example below:
body paragraph text (the "first phrase to capture" or the "second phrase to capture").
So the following should be the matches: "first phrase to capture" and "second phrase to capture".  I'm trying to use the negative lookbehind as below but I get an error saying lookbehinds need to be zero-width.  Is there another way to implement this using a regex?
(?<=\(.*)(".*?")(?=.*\))
 
     
     
    