You can use the following pattern to get everything between " ", including the leading and trailing white spaces:
"(.*?)"
or
"([^"]*)"
If you want to capture everything between the ” ” excluding the leading and trailing white spaces you can do:
"\s*(.*?)\s*"
or
"\s*([^"]*)\s*"