I am using this regular expression in a java file to validate the password.
"^\w*(?=\w*\d)(?=\w*[a-z])(?=\w*[A-Z])\w*$"
It's showing the error :
Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\ )
Can anybody tell me what mistake I am doing in this?(I don't know anything about regular expressions. I copied it from google.)