GGetWebTool

Developers

Regex Tester

Test and explain regular expressions with live match highlighting.

100% client-side · Data never leaves your device · Free forever

Matches: 0

    Test regular expressions with live highlighting

    Write a pattern, set flags, and see every match highlighted in the sample text. Capture groups are listed under each match for quick debugging.

    JavaScript regex tips

    • Use \\d for digits; remember to escape backslashes in strings.
    • Flag i ignores case; m makes ^/$ line-aware; s lets . match newlines.
    • Prefer non-greedy quantifiers (*?, +?) when over-matching.

    Frequently asked questions

    Which regex engine is used?+

    Your browser’s JavaScript RegExp engine (ECMAScript). Syntax can differ slightly from PCRE or Python.

    Why is the global flag forced for listing matches?+

    To collect all matches safely we ensure the g flag when scanning. You can still toggle i, m, and s in the UI.

    Is my test data uploaded?+

    No. Patterns and sample text stay in the browser.