Do I need to sign up or install anything?
No. There is no signup and nothing to install. The regex tester runs entirely in your browser — type a pattern and your text and see matches highlighted instantly.
Which regex flavor does it use?
JavaScript (ECMAScript) regular expressions, the same engine your browser and Node.js use. All standard flags are supported: g, i, m, s, u and y.
Is my text sent to a server?
No. Matching happens locally in your browser using the built-in RegExp engine. Nothing you type is uploaded anywhere.
Can I see capture groups?
Yes. Each match lists its position and every capture group, including named groups, so you can debug complex patterns.
Can I replace or substitute text with a regex?
Yes. Switch the matches panel to the Replace tab, type a replacement string and see the substituted text update live. You can reference capture groups with $1, $2, named groups with $<name>, and the whole match with $& — then copy the result.