Launching a SaaS?·Collect waitlist signups before you build — before.run
SandboxPatternsDetectDocs
v0.1 — Open Beta
79 patterns in catalog

The modern regex sandbox

Visualize matches, debug failures at the exact character, generate production-ready code in Go, PHP, TypeScript and Zod — all without a server.

/
/
Test String
3 matches
[…]+Character class […]Matches any single character listed in this set — repeated one or more times (greedy) · + — one or more times (greedy)
a-za-za-z — range from 'a' to 'z'
A-ZA-ZA-Z — range from 'A' to 'Z'
0-90-90-9 — range from '0' to '9'
..'.' — literal character
__'_' — literal character
%%'%' — literal character
++'+' — literal character
\-\-\- — escaped character
@@'@' — literal character
[…]+Character class […]Matches any single character listed in this set — repeated one or more times (greedy) · + — one or more times (greedy)
a-za-za-z — range from 'a' to 'z'
A-ZA-ZA-Z — range from 'A' to 'Z'
0-90-90-9 — range from '0' to '9'
..'.' — literal character
\-\-\- — escaped character
\.\.\. — escaped character '.'
[…]{2,}Character class […]Matches any single character listed in this set — repeated at least 2 times · {2,} — at least 2 times
a-za-za-z — range from 'a' to 'z'
A-ZA-ZA-Z — range from 'A' to 'Z'
Pattern: 48 charsInput: 128 chars
100% client-side · private
Live Highlighting

Matches highlighted in real-time with zero latency.

Code Generator

Instant snippets for TS, Zod, Go, PHP, Vitest, PHPUnit.

Anonymous Sharing

Compressed URL shares — no account, no server storage.

100% Private

All processing is client-side. Your patterns never leave the browser.

Take patterns to production with @regex.to/validators

TypeScript-first · Zod integration · Zero dependencies

View docs
bash
$ npm install @regex.to/validators
$ node -e "const {test}=require('@regex.to/validators'); console.log(test('email','hi@regex.to'))"
true