Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Floats with trailing zeros as a hash key

by cbro (Pilgrim)
on May 09, 2003 at 16:51 UTC ( [id://256930]=note: print w/replies, xml ) Need Help??


in reply to Floats with trailing zeros as a hash key

If you don't mind predefining your keys:
my $key1 = sprintf "%.2f", 45.20; my %ITEMS = ( $key1 => 'item 1');
This will work. I tested it as follows:
$key1 = sprintf "%.2f", 52.30; my %ITEMS = ( $key1 => 'item 1', 45.25 => 'item 2' ); my $input = <STDIN>; chomp ($input); if (exists $ITEMS{$input}) { print $ITEMS{$input} . "\n"; }
It printed "item 1" when I entered 52.30.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (6)
As of 2024-04-24 07:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found