Question

pattern for name in HTML5

[a-zA-Z ]{5,}

Its accepting 5 times spaces.

I want a pattern that it do not accept names that start with a space

Était-ce utile?

La solution

Change

[a-zA-Z ]{5,}

to

[a-zA-Z][a-zA-Z ]{4,}

Autres conseils

This worked for me

pattern="^[a-zA-Z]+(\s[a-zA-Z]+)?$"
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top