Regular Expression Tester
Test and debug regular expressions with live highlighting, capture groups, and match details. Supports all JavaScript regex flags (g, i, m, s, u).
Developer ToolsHow to Use Regular Expression Tester
What is a Regular Expression?
A regular expression (regex) is a pattern used to match character combinations in strings. Regex is incredibly powerful for validation, searching, extracting, and replacing text in programming.
Regex Syntax Basics
- Literal characters:
abcmatches "abc" exactly - Character classes:
[abc]matches a, b, or c;[0-9]matches any digit - Negated classes:
[^abc]matches anything except a, b, or c - Quantifiers:
*(0+),+(1+),?(0 or 1),{n}(exactly n),{n,m}(between n and m) - Anchors:
^(start of line),$(end of line),\b(word boundary) - Groups:
(abc)captures group,(?:abc)non-capturing group - Alternation:
a|bmatches a or b - Escape:
\.matches literal dot (escape special chars with\)
How to Use This Tool
Test a Pattern
- Enter your regex pattern in the Pattern field (without
/delimiters) - Toggle flags as needed:
- g (global): Find all matches, not just the first
- i (case-insensitive): Match regardless of case
- m (multiline):
^and$match line starts/ends - s (dotAll):
.matches newlines too - u (unicode): Full unicode support
- Paste your test text in the Test Text area
- Click Run Test to execute the pattern
- View highlighted matches in the "Matches in Text" section
- See detailed match info including positions and captured groups
Example Patterns
- Email:
\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b - URL:
https?://[^\s]+ - Phone (US):
\(?\d{3}\)?[-.\s]?\d{3}[-.\s]?\d{4} - Hex color:
#[0-9A-Fa-f]{6}\b - Date (YYYY-MM-DD):
\d{4}-\d{2}-\d{2} - IP Address:
\b(?:\d{1,3}\.){3}\d{1,3}\b
Common Use Cases
- Form Validation: Validate email, phone, password patterns in real-time
- Data Extraction: Extract emails, URLs, dates, or IDs from logs or documents
- Search & Replace: Find patterns in text files for bulk editing
- Log Parsing: Extract error codes, timestamps, or user IDs from server logs
- String Cleaning: Remove unwanted characters or normalize formats
- Testing Regex: Debug patterns before implementing in code
- Learning Regex: Experiment with patterns and see matches instantly
Understanding Flags
- g (global): Without this, only the first match is found. With
g, all matches are returned. - i (ignore case):
hellomatches "Hello", "HELLO", "hElLo", etc. - m (multiline):
^matches start of each line,$matches end of each line (not just start/end of entire string). - s (dotAll): Normally
.doesn't match newlines. Withs, it does. - u (unicode): Enables full unicode matching (important for emoji, accented characters, etc.).
Captured Groups
When you use parentheses () in your pattern, regex captures those parts:
- Pattern:
(\w+)@(\w+)\.(\w+) - Text:
hello@example.com - Match:
hello@example.com - Groups:
$1 = hello,$2 = example,$3 = com
Use groups to extract specific parts of matches or for backreferences.
Tips
- Start simple: Test with a basic pattern, then add complexity
- Use
\bfor word boundaries:\bcat\bmatches "cat" but not "catch" - Escape special characters:
.,*,+,?,[,],{,},(,),^,$,|,\need\before them to match literally - Test edge cases: Empty strings, very long strings, special characters
- Use non-capturing groups
(?:...)when you don't need to extract: Faster and cleaner - Avoid catastrophic backtracking: Patterns like
(a+)+bcan hang on long strings without matches
Frequently Asked Questions
Related Development Tools
JSON Formatter & Validator
FeaturedFormat, validate, and pretty-print JSON with our developer-friendly editor.
Use Tool βQR Code Generator
FeaturedCreate custom QR codes for URLs, text, and contact info
Use Tool βCSS Beautifier
Format messy CSS into clean, readable styles with consistent indentation and spacing. Perfect for cleaning up minified or poorly formatted stylesheets.
Use Tool βCSV Sorter
Sort CSV by columns - Order CSV rows by one or more columns in ascending or descending order with multi-level sorting support
Use Tool βTSV to CSV Converter
Convert TSV to CSV - Transform tab-separated values to comma-separated values with automatic quoting
Use Tool βCSV to TSV Converter
Convert CSV to TSV - Transform comma-separated values to tab-separated values with automatic quote removal
Use Tool βCSV Column Renamer
Rename CSV columns - Change CSV column headers and standardize naming conventions with camelCase, snake_case, or Title Case
Use Tool βHTTP Status Code Checker
Look up HTTP status codes and their meanings instantly. Understand error codes and how to fix them.
Use Tool βShare Your Feedback
Help us improve this tool by sharing your experience