Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Regular Expression for MAC Address

by MeowChow (Vicar)
on May 26, 2001 at 00:19 UTC ( [id://83413]=note: print w/replies, xml ) Need Help??


in reply to Regular Expression for MAC Address

Are you trying to extract the address or just check for a match?

To check for a match:

/^([0-9a-f]{2}([:-]|$)){6}$/i
To extract the address:
@nums = split /[:-]/, $mac;
To match and extract an address whole, from a line containting other text:
/((?:[0-9a-f]{2}[:-]){5}[0-9a-f]{2})/i
   MeowChow                                   
               s aamecha.s a..a\u$&owag.print

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-04-24 18:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found