Overview
Regular expressions are easy to get almost right. This tester lets you paste a pattern and a sample string and see matches, groups, and failures before you ship the regex to production.
It uses JavaScript regex semantics. That is not identical to Python, grep, or .NET. Flags (i, m, g, s) change meaning. A pattern that "works" here can still ReDoS a server if it is catastrophic. Keep patterns simple.
Testing is local. You can paste log lines that contain IPs or emails without sending them to a hosted regex debugger.