Domanda

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

È stato utile?

Soluzione

Change

[a-zA-Z ]{5,}

to

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

Altri suggerimenti

This worked for me

pattern="^[a-zA-Z]+(\s[a-zA-Z]+)?$"
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top