I have the following text:
"text tutorial" tutorial tipps tricks diy fashion "fashion style"
No I want to have a regular expression which splits the text above to single keywords. All the keywords which a in quotes should be fined as a single keyword.
The output of the regular expression should be this:
- text tutorial
- tutorial
- tipps
- tricks
- diy
- fashion
- fashion style
Thanks.