R

TestRegex

Between 3 and 6 of a

a{3,6}

Matches between 3 and 6 (inclusive) consecutive `a` characters.

Examples

Match Sample:
a aa aaa aaaa aaaaaaaaaa
Regex Example:
a{3,6}
JAVASCRIPT PYTHON PCRE

Share & Embed

Use this snippet to display this token on your own site.

<!-- Embed Regex Token: a{3,6} -->
<code class="regex-token">a{3,6}</code> - Between 3 and 6 of a
<small><a href="https://testregex.com/cheatsheet/between-3-and-6-of-a">See details</a></small>