문제

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.

도움이 되었습니까?

해결책

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

.{5,}

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

다른 팁

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

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top