Help for this page

Select Code to Download


  1. or download this
    while (<QSTNS>)    {
    $_ =~ /^(Quiz)(\d)$/;
    $max = $2;
    }
    
  2. or download this
    while (<QSTNS>)    {
    ($max) =~ /Quiz(\d)/;
    }
    
  3. or download this
                    $_ =~ /([^,]+),([^,]+),([^,]+),([^,]+)/;
                                    push (@A,$1);
                                    push (@B,$2);
                                    push (@C,$3);
                                    push (@D,$4);