Languages

Regular Expressions Cheat Sheet

Print-ready cheat sheet for Regular Expressions, organized for fast lookup, study, and desk-side use

Source
Regular Expressions Reference (regular-expressions.info)
License
MIT
Variants
3 download options
Updated
2026-03-27

Sample

What's in this cheat sheet

Metacharacters

.Any character (except newline)
^Start of string / line
$End of string / line
*0 or more of previous
+1 or more of previous
?0 or 1 of previous (optional)
\Escape metacharacter

Literal Matching

hello     # matches "hello" exactly
a.c       # matches "abc", "a1c", "a-c", etc.
\.txt     # matches literal ".txt"

Download the full cheat sheet for all sections, formatted for print

Download PDF

Downloads

Choose the treatment that matches how you read

Text formats

Copy or download as plain text

Download Markdown

Best for copying commands, snippets, and config into notes, prompts, or docs

Download Markdown

Preview

The web preview is for quick browsing. The PDF remains the authoritative print artifact

Open in Browser