Help for this page

Select Code to Download


  1. or download this
        @matches = $spooler =~ /(\d+)ms/g;
        foreach $a (@matches){
            print  $a .",";
        }
        print "\n";
    
  2. or download this
    print join(',',$spooler=~/(\d+)ms/g)."\n";