I have a value like this:
'Foo Bar' 'Another Value' something else
What regex will return the values enclosed in the quotation marks (e.g. Foo Bar and Another Value)?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’ve been using the following with great success:
It supports nested quotes as well.
For those who want a deeper explanation of how this works, here’s an explanation from user ephemient: