I need regex for password validation. I have two regexs.
1) String regexOne_must_contain = "^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[^\\w\\s]).{6,15}$";
2) String regexTwo_must_not_contain = "[%,&,+,\\,\\s,\"]";
I want to combine this regex in one regex to validate password. The Password length should be of minimum 6 characters, must contains at least one special character(_.!@$*=-?), one upper case, one lower case and one numeric character