Help for this page

Select Code to Download


  1. or download this
        if ($volume =~ $vol_to_parse) {
    
  2. or download this
        if ($volume =~ /$vol_to_parse/) {
    
  3. or download this
    print "Using: "."vol: $vol_to_parse". " and " . "file: $file_to_parse"
    + . "\n";
    
  4. or download this
    print "Using: vol: $vol_to_parse and file: $file_to_parse\n";
    
  5. or download this
        open(DAT, "<", $file_to_parse) || die "Could not open file! ($!)\n
    +";
    
  6. or download this
    #!/usr/bin/perl
    
    ...
            }
        }
    }