Small function to convert hex IP address to decimal. For example, ff.ff.ff.0 becomes 255.255.255.0
sub hex2ip{ return join(".", map {hex($_)} split(/\./,shift)); }

Replies are listed 'Best First'.
Re: Converting hex IP addresses to hex
by AltBlue (Chaplain) on Jan 27, 2001 at 05:27 UTC
    and again a regexp version: s/(\w+)/hex($1)/eg :)

    --
    AltBlue.

Re: Converting hex IP addresses to decimal
by Clownburner (Monk) on Oct 30, 2001 at 03:55 UTC
    And for those unfortunate souls who get their IP addresses in unsigned, non-delimited hex (ala SNMP agents):
    sub hex2ip { return join(".", map {hex($_)} unpack('A2 A2 A2 A2',shift +)) }

    "Non sequitur. Your facts are un-coordinated." - Nomad