Question

I am just using HTML5 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 doesnt work so I am obviosuly missing something obvious. Would be most grateful if anyone could help me out.

Was it helpful?

Solution

The basic rule I want is 'minimum 5 of any characters'

.{5,}

This will match any character (except \n) at least 5 times.

OTHER TIPS

[0-9a-zA-Z]{5,}

--padding for the answer to be accepted by the system (at least) :P

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top