Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: Regex overlap in MAC address

by VSarkiss (Monsignor)
on Sep 11, 2006 at 20:56 UTC ( [id://572399]=note: print w/replies, xml ) Need Help??


in reply to Regex overlap in MAC address

Personally, I prefer your second approach over the regex approach. I would make it a little more brief with sprintf, something like this:

my $mac_pad = join(':' => map { sprintf "%02s", $_ } split(/:/, $mac));
You could argue that it's too compact, but I think the join-map-split idiom is fairly common. YMMV.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-19 23:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found