# Possible revision, example 1 $_ = "I logged in as brusimm and found that I had email."; # Test string if (/brus/) { # Pattern: brus print "There, our pattern showed up in our string.\n" ; # Tell user } else { print "No match in our string for our pattern.\n"; # As you'll see... }