Help for this page

Select Code to Download


  1. or download this
    my $charset = '{'
                . join(',', '0'..'9',
    ...
                            'a'..'z')
                . '}';
    my @charlist = glob( $charset x 3 );
    
  2. or download this
    while my $list ( glob( $charset x 3 ) )
    {
        do_something_with($list);
    }