Let\'s say I have the following string:
$my_string = \"rainbow has seven colors\";
How can I write a regular expression that
WILL match: \"rainbow\" \"seven\" \"colors\"
but will NOT match: \"rain\" \"color\"
Thanks in advance!!