Help for this page

Select Code to Download


  1. or download this
        my @bytes;
        while ($address =~ /(\d+)/g) {
            push @bytes,$1
        }
    
  2. or download this
        my @bytes = $address =~ /(\d+)/g;
    
  3. or download this
    unpack('N', pack('C*', $address =~ /(\d+)/g))