Created
September 18, 2013 10:15
-
-
Save yao2030/6607159 to your computer and use it in GitHub Desktop.
barney & fred
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/perl | |
##Copyright (C) 2013 by Yours truly | |
# | |
$_ = "I saw Barney\ndown at the bowling alley\nwith Fred\nlast night.\n"; | |
if (m{ | |
barney # the little guy | |
.* # anthing in between | |
fred # the loud guy | |
}six) | |
{ | |
print "That string mentions Fred after Barney!\n"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment