in reply to Regex Or Die!
Flip it around.
if ( /^(foo|bar)/ ) { my $useful_code; } else { die "What the heck?!\n"; } [download]
if ( ! /^(foo|bar)/ ) { die "What the heck?!\n"; } my $useful_code; ... [download]