@jiminp/tooltool
    Preparing search index...

    Variable REGEX_UUIDConst

    REGEX_UUID: RegExp = ...

    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.

    • Case-insensitive (matches both uppercase and lowercase)
    • Does not validate UUID version or variant bits
    • Matches any string in UUID format, not just valid UUIDs
    REGEX_UUID.test('550e8400-e29b-41d4-a716-446655440000'); // true
    REGEX_UUID.test('550E8400-E29B-41D4-A716-446655440000'); // true
    REGEX_UUID.test('not-a-uuid'); // false
    REGEX_UUID.test('550e8400-e29b-41d4-a716'); // false (incomplete)