Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^2: I need Hex conversion, not!

by Anonymous Monk
on Jan 07, 2013 at 17:17 UTC ( [id://1012065]=note: print w/replies, xml ) Need Help??


in reply to Re: I need Hex conversion, not!
in thread I need Hex conversion, not!

Wow, that is cool. Btw, is there a way to ignore 0x prefix without substr, or anything ?

Replies are listed 'Best First'.
Re^3: I need Hex conversion, not!
by tobyink (Canon) on Jan 08, 2013 at 09:33 UTC
    use strict; use warnings; sub hexnum { package HexNum; use base 'Math::BigInt'; use overload q[""] => 'as_hex_without_0x'; __PACKAGE__->new(@_); } sub HexNum::as_hex_without_0x { substr($_[0]->as_hex, 2); } my $var = hexnum 0x2F; $var += 3; $var += hexnum 0x02; print "$var\n";
    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

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

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

    No recent polls found