in reply to how to find what's not there with a regex?

Maybe something like this (you could do %matches instead of @matches if desired, as well):
my @matches = $input =~ m/\b(\w+)\s+=( '.*?'|( \S+)+)/sg;
Match the LHS and then the equals sign, and then either a single-quoted string or a sequence of single_space-word sets.