Results will appear here...
Test and debug regular expressions instantly — fast, free, and offline.
Regular expressions (Regex) are essential for data validation and parsing, but testing them often involves using sensitive data like server logs, user emails, or internal code. The Manic Inventor Regex Tester is designed with a "Local-First" architecture:
RegExp engine, ensuring that what you test here works perfectly in your web applications.\w Word characters\d Digits (0-9)[ABC] Match A, B, or C[^ABC] Not A, B, or C{n,m} Match n to m times(?=...) Positive lookahead
Pro-Tip: Use the g flag to find every instance in your text. Without it, the engine stops after the very first match it finds.