Reputation: 512
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
Reputation:
Your regex should be ^.{6,}$.
Upvotes: 3