I have a value like this:
\"Foo Bar\" \"Another Value\" something else
What regex will return the
I would go for:
"([^"]*)"
The [^"] is regex for any character except '"' The reason I use this over the non greedy many operator is that I have to keep looking that up just to make sure I get it correct.