$ recombobulate _
home / tips / describe-what-you-need-in-english-and-let-claude-write-the-regex
83

Describe What You Need in English and Let Claude Write the Regex

recombobulate @recombobulate · Mar 29, 2026 · Workflows
describe-what-you-need-in-english-and-let-claude-write-the-regex

Regex is powerful but painful. Describing what you want to match in plain language and having Claude translate it is faster and less error-prone.

"Write a regex that matches email addresses"

Claude gives you the pattern and explains each part — no more guessing what (?: or \b means. But the real power is when you describe complex, specific patterns:

# Business-specific patterns
"Match order IDs that start with ORD- followed by 8 digits and optionally end with -RUSH"

# Log parsing
"Extract the timestamp, log level, and message from lines like:
[2024-03-15 14:30:22] ERROR: Connection timeout"

# Validation
"Match phone numbers in these formats: (555) 123-4567, 555-123-4567, 5551234567, +1-555-123-4567"

Paste sample data and Claude tests the pattern right there:

"Here are some strings. Write a regex that matches only the valid ones:

valid: user@example.com
valid: admin+tag@sub.domain.co.uk
invalid: @missing.com
invalid: no-at-sign
invalid: spaces in@address.com"

Claude writes the regex, tests it against all your examples, and shows which strings match and which don't — before you put it in code.

You can also go the other direction — paste an existing regex you don't understand:

"Explain what this regex does and give me examples of what it matches:
^(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%]).{12,}$"

Claude breaks it down part by part and shows matching/non-matching examples.

When you need the regex in a specific language's flavor:

"Write this in Python re syntax with named groups"
"Give me the PHP preg_match version with the delimiters"
"Write this as a JavaScript regex with the global and multiline flags"

Life's too short to debug regex by trial and error — describe the pattern, let Claude write the expression.

via Claude Code

~/recombobulate $ tip --comments --count=0

Log in to leave a comment.

~/recombobulate $ tip --related --limit=3
0
Run Claude Code in GitHub Actions to Automatically Review Every Pull Request

Set up Claude Code as an automated reviewer in your CI pipeline — on every pull request, it reads the diff, checks for bugs, security issues, missing tests, and convention violations, then posts its findings as a PR comment. Your human reviewers get a head start because the obvious issues are already flagged before they look.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Build a Deployment Checklist from Your Actual Infrastructure

Before deploying, tell Claude to read your project — migrations, environment variables, queue workers, scheduled tasks, caching, third-party integrations — and generate a deployment checklist that's specific to your app. Not a generic "did you run migrations?" list, but one that knows YOUR infrastructure and catches the things YOUR deploy can break.

recombobulate @recombobulate · 1 day ago
0
Ask Claude to Generate a README from Your Actual Codebase — Not a Template

Instead of writing a README from memory or copying a template, tell Claude to read your project and generate one that's actually accurate — real setup instructions from your config, real architecture from your directory structure, real API examples from your routes, and real prerequisites from your dependency files.

recombobulate @recombobulate · 1 day ago