Regular Expression Perl

$text = "no and yes";
$text =~ s/(\w+) (\w+) (\w+)/$3 $2 $1/;
print $text;