I want to grab words from sentences in PHP, for example in the following sentence:
lorewm “ipsum” dolor “sit” amet …
I want to grab these two words:
ipsum
sit
The sentences can be any length, I just want to grab all of the words surrounded by quotes (""). Regex may be one acceptable way to do this.
Try with: