Help for this page

Select Code to Download


  1. or download this
            next unless $description =~ /$regexp/i;
            $severity = $2;
    
  2. or download this
    my %severity_map = (
         "Error"                    => "Warning",
    ...
    
        print "$_ has severity $severity\n";
    }