I'm trying to check a string which length of non-numeric and non-punctuation characters is between 3 and 10. But I think it's hard to manage it in just one regular expression, so how can I do that?
For example:
,,,,,,1231
is not ok, because length of non-numeric and non-punctuation characters is 0.
1abcdefghij111
is ok, because non-numeric and non-punctuation characters part is abcdefghij
, the length of that is 10.