My problem is to create a policy password that contains:
- upper case alphabetic characters - done
- lower case alphabetic characters - done
- digits - done
- special charakters - done
- don't allow alphabetic/digits sequences e.g. qwerty, 12345, qazws, poiuy, 09876, abcde etc. - failure
Can anyone please clarify if this can be done through Regular Expression or is it better to implement through Java library e.g. vtpassword. If possible can anyone please provide me a sample code?