Skip to content

regexhq/mac-regex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MAC Regex

Build Status

A regular expression for matching MAC addresses.

Installation

npm i --save mac-regex

Usage

var mac = require('mac-regex');

// Exact string option
mac({ exact: true }).test('aa-bb-cc-dd-ee-ff')     // => true
mac({ exact: true }).test('aa:bb:cc:dd:ee:ff')     // => true
mac({ exact: true }).test('aa:bb:cc:dd:ee:ff   ')  // => false
mac({ exact: true }).test('kljhsdf')               // => false

// Global option (default)
mac().test('aa:bb:cc:dd:ee:ff   ')  // => true
mac().test('kljhsdf')               // => false

'11:22:aa:44:55:33 11:22:aa:44:55:33'.match(mac())
// => ['11:22:aa:44:55:33', '11:22:aa:44:55:33']

Acknowledgements

License

MIT

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Crafted with <3 by John Otander.

About

A regular expression for matching MAC addresses.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •