Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Can you make it nicer?

by oiskuu (Hermit)
on Nov 19, 2013 at 13:45 UTC ( [id://1063331]=note: print w/replies, xml ) Need Help??


in reply to Can you make it nicer?

Using sprintf to stringify a number, you may want to check its range to avoid negatives or overflow surprises:
my $id = shift; # disallow ID 0; $id > 0 && $id < 1e9 or return q(); $id = sprintf '%0*lu', ($id < 1e6 ? 6 : 9), $id; ...
Or, you could let perl stringify the number, and munge it from there.
sub id2path { my $id = shift; # allow ID 0; disallow 12.34 $id =~ m/^\d{1,9}$/ or return q(); my $n = length($id) > 6 ? 3 : 2; $id = sprintf '%0*s', 3 * $n, $id; $_ = "/$_/" for substr($id, $n, $n); # or: substr($id, $_, 0, '/') for -2*$n, -$n; return $id; }
Interestingly, perl sprintf allows zero-padding of %s! Is this a documented feature?

Log In?
Username:
Password:

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

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

    No recent polls found