Hi,
I have the below regular expression used in one of the java actions to check the password strength. Can somone tell me what this translates to?
public static final Pattern pattern = Pattern.compile("^.(?=.{8,})(?=.[a-z])(?=.[A-Z])(?=.[\W_]).*$");
Thanks Aravind