uuid-regexp
RegExp for finding an RFC4122 compliant UUID in a string.
npm install uuid-regexp --save
You can also use Duo, Bower or download the files manually.
npm stats
API Examples
API
var uuid = require('uuid-regexp')
uuid().exec('f47ac10b-58cc-4372-a567-0e02b2c3d479')
uuid().test('f47ac10b-58cc-4372-a567-0e02b2c3d479')
uuid().test('f47ac10b58cc4372a5670e02b2c3d479')
uuid().test('F47AC10B58CC4372A5670E02B2C3D479')
uuid({ nil: true }).test('00000000-0000-0000-0000-000000000000')
uuid().test('00000000-0000-0000-0000-000000000000')
'Secret UUID is: {4d36e96e-e325-11ce-bfc1-08002be10318}'.replace(uuid({ flags: 'g' }), '*****')
RegExp
var regexp = require('uuid-regexp/regexp')
regexp.versioned.source
regexp.nil.source
API
uuid(options)
arguments
options.nil (Boolean)
Whether to include the nil/empty UUID pattern. (default: false
)options.flags (String)
Additional RegExp flags ('i' is always set).
returns
(RegExp)
RegExp for matching an RFC4122 compliant UUID strings.
Inspiration
Contributing
SEE: contributing.md
Licenses