Invalid regex
The named group syntax is incomplete.
(?<name[A-Z]+)Output
Invalid capture group namePrivate / No Upload
Invalid group errors usually come from unsupported group syntax, missing parentheses, or lookbehind patterns in environments that do not support them.
Runs in your browser
HappyFormatter tools process pasted snippets client-side for quick, privacy-first developer workflows.
No upload
HappyFormatter tools process pasted snippets client-side for quick, privacy-first developer workflows.
No account
HappyFormatter tools process pasted snippets client-side for quick, privacy-first developer workflows.
Invalid regex
The named group syntax is incomplete.
(?<name[A-Z]+)Output
Invalid capture group nameFixed regex
Close the group name before the pattern.
(?<name>[A-Z]+)Output
Valid named capture groupTest JavaScript regex locally.
Related toolEscape patterns and strings.
ToolParse query text locally.
Tool