{n} Matches exactly n times. /a{3}/ matches "aaa" {n,} Matches n or more times. /a{2,}/ matches "aa", "aaa" {n,m} Matches between n and m times. /a{2,4}/ matches "aa ...