Help for this page

Select Code to Download


  1. or download this
    unless ($input =~ /badinput/) {
        print $input;
    }
    
  2. or download this
    print $input unless $input =~ /badinput/;
    
  3. or download this
    use 5.010;
    
    given ($input) {
        print unless /badinput/;
    }