You don't need some massive single regular expression that would very certainly contain arcana like lookaheads and would be difficult to maintain as more conditions were added. All you require is
function validatePassword(pw) {
return /[A-Z]/ .test(pw) &&
/[a-z]/ .test(pw) &&
/[0-9]/ .test(pw) &&
/[^A-Za-z0-9]/.test(pw) &&
pw.length > 4;
}