Skip to content

Instantly share code, notes, and snippets.

@aspyct
Created December 22, 2014 13:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspyct/062ced6cf0671069cf06 to your computer and use it in GitHub Desktop.
Save aspyct/062ced6cf0671069cf06 to your computer and use it in GitHub Desktop.
Perl killer
# http://swtch.com/~rsc/regexp/regexp1.html
$_ = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
if ( m/a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?a?aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/ ) {
print "hello";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment