regular expression 3 quantifiers
<JavaScript> * Specifies zero or more matches. Same as {0,}. + Specifies one or more matches. Same as {1,}. ? Specifies zero or one matches. Same as {0,1}. {n} Specifies exactly n matches. {n,} Specifies at least n matches. {n,m} ...
http://qindex.info/i.php?x=4872

-