Well, to match anything between quotes, it'd simply be
preg_match('/"(.*?)"/',$string,$result);
Although the alternative, and ultimately better version is:
preg_match('/"([^"]+)"/',$string,$result);
Although it could probably match TOO much if the quotes aren't paired correctly.