Pergunta

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

Foi útil?

Solução

Change

[a-zA-Z ]{5,}

to

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

Outras dicas

This worked for me

pattern="^[a-zA-Z]+(\s[a-zA-Z]+)?$"
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top