Help for this page

Select Code to Download


  1. or download this
            if($filecontents =~ /\*\sdisks/){
            my @matchsect = /\*\sdisks/;
            print "@matchsect\n\n";
    }
    
  2. or download this
            if ($filecontents =~ /\*\sdisks/) {
                 # delete everything up to the first occurrence
    ...
                 $filecontents =~ s/^.*?\*\sdisks//;
                 print "$filecontents\n\n";
            }