Reputation: 1
Format as below:
I'm working on the visual studio validation check, I have tons of mac address and I'm trying to find a regular expression fits all these mac address as the format shown.
Upvotes: 0
Views: 262
Reputation: 21
Here is the regex:
^([0-9a-f]{4}\.[0-9a-f]{4}\.[0-9a-f]{4})$
For more, checkout this link:
Upvotes: 2