JSON
JSON Formatter
Format, validate and beautify JSON instantly.
Development
Test regular expressions against sample text.
Enter a pattern and sample text to inspect matches, positions and captured groups.
Regular expressions are evaluated locally by your browser's JavaScript engine.
About this tool
A regular expression tester helps you validate patterns against sample text and inspect every match, position and captured group. BigForgeKit uses the browser JavaScript regular expression engine and performs all testing locally.
Features
Frequently asked questions
The tester uses the JavaScript RegExp implementation provided by your browser. Some syntax available in other engines, such as PCRE-specific features, may not be supported.
The g flag finds every non-overlapping match. Without it, JavaScript normally returns only the first match.
A capture group is a parenthesized part of a regular expression whose matched value is returned separately from the complete match.
Poorly designed expressions can cause excessive backtracking and become slow on certain inputs. Avoid testing untrusted or extremely complex patterns against very large text.
Related tools