PassionateDeveloper
PassionateDeveloper

Reputation: 15138

RegEx for Username validation

im a very beginner in RegEx.

I search a RegEx that validates if a string (username) is at least 3 chars, has no number or special char (ü, ö, ä) in firstspace, and no other special char else then üöä in total string.

Any help please?

Upvotes: 1

Views: 845

Answers (1)

Joe
Joe

Reputation: 2587

^[a-zA-Z][a-zA-Z0-9üöä]{2,}$

Upvotes: 5

Related Questions