Reputation: 4022
I am just using HTML forms for the first time and I want to use the new pattern attribute. This is a regular expression (which I haven't used before) so I am a bit lost. The basic rule I want is 'minimum 5 of any characters'
I have tried:
pattern="([0-9][A-Z]){5}"
but this doesn't work, so I am obviously missing something.
Upvotes: 2
Views: 3122
Reputation: 490263
The basic rule I want is 'minimum 5 of any characters'
.{5,}
This will match any character (except \n
) at least 5 times.
Upvotes: 7