Regex Analysis Lab

Inspired by regex101, offering offline-ready testing, substitution, and quick-reference utilities.

Pattern & Flags

Waiting for input

Match Results

Overview

Matches array
Group details
Highlight preview

Replacement Tester

Quick Reference

Curated shortcuts inspired by regex101 reference:

  • \\ddigit
  • \\wword char
  • \\swhitespace
  • .any char (affected by dotAll)
  • ^ / $line start / end (multiline)
  • (?:...)non-capturing group
  • ?= / ?!positive / negative lookahead
  • {m,n}quantifier range

For deeper dives, consult regex101 docs—this offline lab runs fully in-browser.