Finding content between two quotes

Q

How to find content between two quotes in a text string using regular expression? For example, I have the following string: print "\$45.00\n";

✍: Guest

A

Here is the regular expression to capture the content between two quotes:

"([^"]*)"

Click the button to test this regular expression here online:

2013-01-29, 0👍, 0💬