Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Converting Hex to Float (and vise versa)

by barrachois (Pilgrim)
on Feb 09, 2004 at 21:51 UTC ( [id://327754]=note: print w/replies, xml ) Need Help??


in reply to Converting Hex to Float (and vise versa)

I would think the simplest is to let Perl do the work for you. Since 0x428C0000 is an allowed number format in Perl, just evaluate the string using eval() and let Perl translate it into a number for you.

This trick will also work for the other allowed number formats, such as 0777 (leading 0 implies octal).

For example,

print " $_ is " . eval($_) . "\n" for qw( 0x428C000 0777 );
I put together a CGI script to do this sort of conversion (and a few other IP network translations) which you might find instructive; see this link and the source code. Feel free to adopt as you see fit.

- barrachois

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://327754]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-19 06:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found