Regex Cheatsheet - Regular Expression Quick Reference

Quick reference for regular expression patterns. Character classes, quantifiers, anchors, and common patterns.

Share
Back to Regex Cheatsheet

Literal Braces \{ \}

Escape

Matches literal brace characters

Pattern

\{|\}

Examples

\{\w+\}

Match {key} template format

Matches: {name}

Related Tools

More Text Tools