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

RE: (2) One for the regexp fans (nnnn:nnnn:nnnn)

by ybiC (Prior)
on Aug 04, 2000 at 15:05 UTC ( [id://26166]=note: print w/replies, xml ) Need Help??


in reply to Re: One for the regexp fans
in thread One for the regexp fans

Another common format for MAC address display is nnnn:nnnn:nnnn (common amongst Cisco gear, anyway).   In either case, it's the same 12 hex digits, only the delimiter and break-points change.

Is simple code that handles both formats possible?
    cheers,
    ybiC

  • Comment on RE: (2) One for the regexp fans (nnnn:nnnn:nnnn)

Replies are listed 'Best First'.
RE: RE: (2) One for the regexp fans (nnnn:nnnn:nnnn)
by nuance (Hermit) on Aug 04, 2000 at 17:19 UTC
    You could probably do something like:
    if $str =~ m!\.! {$str =~ s/(\.?[0-9a-eA-E]*)/(substr("0$1", -2))/ge;} else {$str =~ s/(:?[0-9a-eA-E]*)/(substr("0$1", -4))/ge;}

    Nuance

Log In?
Username:
Password:

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

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

    No recent polls found