By Riley Hickman on Tuesday, 21 April 2015
Posted in Technical Issues
Replies 1
Likes 0
Views 425
Votes 0
We have a secondary password field that we are trying to do a RegEx on.

It requires 1 Uppercase, 1 Lowercase, 1 Symbol, 1 Digit, 6 characters

Can you assist with a correct RegEx that will work?
Hello Daniel,

Can you try this Regex format?

^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[-+_!@#$%^&*.,?]).+$

Hope this helps.
·
Tuesday, 21 April 2015 23:45
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post