Regex AssistantRegex Assistant is a lightweight, zero-latency VS Code extension that breaks down regular expressions and helps you work with them faster. Hover over any regex in your code to see an instant explanation, test patterns in the built-in live tester, or generate snippets in JavaScript, Python, or Go. Why I Built ThisComplex regex shouldn't interrupt your flow. When you're reading code and encounter an unfamiliar pattern, you shouldn't need to:
Regex Assistant keeps everything in your editor. It uses a local AST parser to break down expressions instantly and securely—no external API calls, no latency, 100% offline. Features📖 Instant Hover ExplanationsHover over any regex literal to see exactly what it does. The extension breaks down anchors ( Supports:
🧪 Live Regex TesterTest your regex patterns directly in the sidebar without leaving VS Code. Type a pattern, add test strings, and see if they match instantly. 📚 Snippet LibraryPick from 10 pre-built regex patterns for common use cases:
Choose your target language (JavaScript, Python, or Go), click a snippet, and it's formatted and ready to copy. 🌍 Multi-Language ExportSee how your regex should be written in different languages. When you hover over a regex, the tooltip shows equivalent syntax for Python and Go—so you can copy it to the right project without guessing the escape rules. ⚡ Blazing FastEverything runs locally with built-in caching for O(1) lookups. No waiting, no external services. 🔒 Privacy FirstYour code never leaves your editor. 100% offline, no analytics, no external API calls. How to UseHover Over a Regex
Test a Pattern
Generate a Snippet
Supported LanguagesThe extension works with:
Example: Email ValidationIn the sidebar, select JavaScript and click "Email Address":
Switch to Python:
Switch to Go:
|