Help for this page

Select Code to Download


  1. or download this
        elsif (/\*{4}stuff\*{4}(.*?)\*{4}endstuff\*{4}/sg;
    ) {
            push(@stuff, $_);
            }
        }
    
  2. or download this
    for (my $i=0; $i < (@filenames); $i++) {
    
    should be
    
    for my $i (0 ... $#filenames) {