How do you indicate a regex that you want to require more than 10 characters? I know that \'*\' is more than 0, and that \'+\' is more than 1 but what is syntax for requir
You use brace notation. For instance, the regex a{10,} would match 10 or more a characters. a{10,20} would match at least 10 and no more than 20 as.
a{10,}
a
a{10,20}