in reply to Re: Converting Hexadecimal to Decimal notation and vice-versa
in thread Converting Hexadecimal to Decimal notation and vice-versa

But how does this apply to the big integers of the OP?
>perl -wMstrict -le "my $int = unpack('N', pack('H8', '102030405060708090a0b0c0d0e0f')); my $dec = sprintf('%d', $int); print $dec; " 270544960

Replies are listed 'Best First'.
Re^3: Converting Hexadecimal to Decimal notation and vice-versa
by stonecolddevin (Parson) on Oct 19, 2009 at 00:24 UTC

    Specify a different template for sprintf?

    mtfnpy

      Can you give an example?