I need a RegExp which matches a word or multiple words in quotes.
[\w]* matches a word
"[\w\W&&[^"]]*" matches multiple words in quotes.
(btw, not sure why \w\W works, but not a simple . (which should match all characters)
So how do i combine these two regexp?