Which regex flavor does this tester use?
It uses JavaScript regular expressions through the browser RegExp engine. Some patterns from PCRE, Python, or .NET may behave differently.
What does the g flag do?
The g flag enables global matching, so the tester finds all matches instead of stopping after the first one.
Why are my capture groups empty?
A capture group can be empty if that optional part of the pattern did not match. Check optional groups, alternation, and greedy quantifiers.
Is my sample text uploaded?
No. The regex is compiled and tested locally in your browser, so sample text is not uploaded to QuickToolFlow.
Can I use this regex tester for JavaScript patterns?
Yes. This tool uses the browser JavaScript RegExp engine, which makes it useful for testing patterns before using them in frontend code, Node.js scripts, or browser validation.