user1665700
user1665700

Reputation: 512

Password not less than 6 characters Validator using RegEx in ASP. Net

I need a Validator which makes sure that the Password is not less than 6 characters, I need the RegEx code for it. Thanks.

Upvotes: 0

Views: 1268

Answers (1)

user240141
user240141

Reputation:

Your regex should be ^.{6,}$.

Upvotes: 3

Related Questions