Help for this page

Select Code to Download


  1. or download this
    $error=~/$_/
    
  2. or download this
    my @regex=('\bcannot verify',
                 '\bcorrupt file',
                 '\bskipped',
                );
    
  3. or download this
    my @regex=(
       qr/\bcannot verify/,
       qr/\bcorrupt file/,
       qr/\bskipped/,
    );
    
  4. or download this
    my @regex = map qr/$_/, (
       '\bcannot verify',
       '\bcorrupt file',
       '\bskipped',
    );