I'm trying to get one regex that'll do the following:
Min length's 6 and max. length 8
No white-space characters
There is at least one alphabetic character and numeric character
- Not contains Turkish character (ı,ö,ğ,ç,ş,ü)
Exp (valid pass) ; tester1, TESTER1, 12345a, invalid pass ; tester*,tester%
I've this regex : ^.*(?=^.{6,8}$)(?=.*[a-z])((?=.*\d)|(?=.*[A-Z])|(?=.*[\W])).*$
Can somebody show and teach me how to do this?