> Check perldoc perlre, "Regular Expressions":
>
> " The following standard quantifiers are
> recognized:
> [...]
> {n} Match exactly n times
> {n,} Match at least n times
> {n,m} Match at least n but not more than
> m times
> "
>
> "\2{3,}" in your regexp means that what "[gatc]{3}"
> matched should at least
> match three times.
>
> Dani
Thank you very much,
Li
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>