# Example 2 # $_ = "I logged in as brusimm and found that I had email."; # Test string if (/but|brus/) { # PatternS: but or 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... } # end