'boo!' =~ /(.*)/; $test_string = "this is a test sentence."; $test_string =~ /(\w+)$/; my $last_word=$1; print "$last_word\n";