Const
Regular expression for matching a complete UUID string.
Matches UUIDs in the standard 8-4-4-4-12 hexadecimal format (case-insensitive). Requires exact match from start to end of string.
REGEX_UUID.test('550e8400-e29b-41d4-a716-446655440000'); // trueREGEX_UUID.test('550E8400-E29B-41D4-A716-446655440000'); // trueREGEX_UUID.test('not-a-uuid'); // falseREGEX_UUID.test('550e8400-e29b-41d4-a716'); // false (incomplete) Copy
REGEX_UUID.test('550e8400-e29b-41d4-a716-446655440000'); // trueREGEX_UUID.test('550E8400-E29B-41D4-A716-446655440000'); // trueREGEX_UUID.test('not-a-uuid'); // falseREGEX_UUID.test('550e8400-e29b-41d4-a716'); // false (incomplete)
Regular expression for matching a complete UUID string.
Matches UUIDs in the standard 8-4-4-4-12 hexadecimal format (case-insensitive). Requires exact match from start to end of string.