Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
        my ( $limit, $data ) = @_;
        return grep $_ >= $limit, $data =~ /\((\d+)\s+?seconds\)/g;
    }