37 chars · 1 line
Needs attention
37 chars · 1 line
Needs attention
UUID input normalization
VetaTool trims whitespace around a UUID, but whitespace inserted between hexadecimal characters changes the canonical 8-4-4-4-12 text. Internal spaces are therefore rejected as an invalid UUID format. This tool is free to use. No account or payment is required.
Last updated
JavaScript string trim removes whitespace at the beginning and end of the input. It does not remove whitespace in the middle of a string.
That distinction prevents the validator from silently rewriting identifier characters beyond a predictable outer trim step.
One space appears inside the final UUID group.
550e8400-e29b-41d4-a716-44665544 0000Invalid UUID formatCommon questions
That page places whitespace only before and after the UUID, where trim removes it. Internal whitespace remains part of the value and fails the pattern.
No. The validator deliberately avoids rewriting internal UUID characters.
Debugging a specific UUID issue? Browse UUID troubleshooting.