I have a value like this:
\"Foo Bar\" \"Another Value\" something else
What regex will return the
For me worked this one:
|([\'"])(.*?)\1|i
I've used in a sentence like this one:
preg_match_all('|([\'"])(.*?)\1|i', $cont, $matches);
and it worked great.