I have a value like this "Foo Bar" "Another Value" something else
What RegEx expression will return the values enclosed in the quotation marks (e.g. Foo Bar and Another Value)?
|
2
|
I have a value like this "Foo Bar" "Another Value" something else What RegEx expression will return the values enclosed in the quotation marks (e.g. Foo Bar and Another Value)?
|
||
|
|
|
I've been using the following with great success:
It supports nested quotes as well. |
||||
|
|
|
In general, the following regular expression fragment is what you are looking for:
This uses the non-greedy *? operator to capture everything up to but not including the next double quote. Then, you use a language-specific mechanism to extract the matched text. In Python, you could do:
|
||
|
|
|
|
I would go for:
The [^"] is regex for any character except '"' |
||
|
|
|
This will result in: >Foo Bar<><>but this< Here I showed the result string between ><'s for clarity, also using the non-greedy version with this sed command we first throw out the junk before and after that ""'s and then replace this with the part between the ""'s and surround this by ><'s. |
||
|
|
|
|
This version
|
|||
|
|