سؤال

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

هل كانت مفيدة؟

المحلول

Change

[a-zA-Z ]{5,}

to

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

نصائح أخرى

This worked for me

pattern="^[a-zA-Z]+(\s[a-zA-Z]+)?$"
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top