Help for this page

Select Code to Download


  1. or download this
    if ( $a eq 'abcdefgh' or $b eq 'abcdefgh' or $c eq 'abcdefgh') {
    
    }
    
  2. or download this
    if ( $a =~ /abcdefgh/ ||
         $b =~ /abcdefgh/ ||
    ...
         ....... ) {
    
    }
    
  3. or download this
    my $USER_NAME = qr{abcdefgh}xms;
    
    ...
        $c =~ $USER_NAME) {
    
    }