Could you give an example of what it is you're trying to grab? Would "this" and "that" be a safe example? See if this works for you:
$str = 'I know "This" and "That" but I want to know more...';
if ($str =~ m/(\".+?\" and \".+?\")/i) {
print "Found: $1\n";
}
^d
Found: "This" and "That"