Skip to content

Instantly share code, notes, and snippets.

@yao2030
Created September 18, 2013 10:15
Show Gist options
  • Save yao2030/6607159 to your computer and use it in GitHub Desktop.
Save yao2030/6607159 to your computer and use it in GitHub Desktop.
barney & fred
#/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