Help for this page

Select Code to Download


  1. or download this
    my($min, $max) = /\b([0-9a-f]+):([0-9a-f]+)\b/i;
    
  2. or download this
    foreach($min, $max) {
        $_ = hex($_);
    }
    
  3. or download this
    my @list = $min .. $max;
    
  4. or download this
    my @hex = map { sprintf '%X', $_ } $min .. $max;
    
  5. or download this
    $, = ','; print @list;
    
  6. or download this
    $, = ','; print @hex;