RemoteramaRemoterama

Free utility

Regex Tester

Write a regular expression and test it against sample text with live results. See every match and captured group as you type. Everything runs client-side using your browser's native RegExp engine.

//

2 matches

  • hello@remoterama.com
  • team@example.org

Quick reference

.any character
\ddigit (0–9)
\wword char (a–z, 0–9, _)
\swhitespace
^start of line
$end of line
*0 or more
+1 or more
?optional (0 or 1)
[abc]any of a, b, c
[^abc]none of a, b, c
(…)capture group
a|ba or b
{2,5}2 to 5 times
\bword boundary

Example patterns — click to try, or copy

How to use

  1. Enter your regex pattern and any flags (g, i, m, s).
  2. Type or paste the test string below.
  3. Matches and capture groups update live.
  4. Adjust the pattern until it matches what you expect.

Related software

Related categories