Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1068425
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T20:17:11+00:00 2026-05-16T20:17:11+00:00

Can anyone help me in writing a regular expression on the following description? The

  • 0

Can anyone help me in writing a regular expression on the following description?

The password contains characters from at least three of the following five categories:

  • English uppercase characters (A – Z)
  • English lowercase characters (a – z)
  • Base 10 digits (0 – 9)
  • Non-alphanumeric (For example: !, $, #, or %)
  • Unicode characters

The minimum length of the password is 6.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T20:17:12+00:00Added an answer on May 16, 2026 at 8:17 pm

    Better way to deal this is to split each of the conditions and have a regex for each of the condition. Then count how many have been satisfied for entered password. In this way you can even tell user if the password is average, meets criteria or a very strong password.

    if (password.length < 6) {
      alert("password needs to be atleast 6 characters long"); 
    }
    
    var count = 0;
    //UpperCase
    if( /[A-Z]/.test(password) ) {
        count += 1;
    }
    //Lowercase
    if( /[a-z]/.test(password) ) {
        count += 1;
    }
    //Numbers  
    if( /\d/.test(password) ) {
        count += 1;
    } 
    //Non alphas( special chars)
    if( /\W/.test(password) ) {
        count += 1;
    }
    if (count < 3) {
      alert("password does not match atleast 3 criterias"); 
    }
    

    Not sure how to match unicode characters using regex. Rest all conditions are available above.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I just forgot the password. Can anyone help me how to get back the
Can anyone help me with the trying to write SQL (MS SqlServer) - I
Wondering if anyone can help me with this annoying but trivial (in terms of
I was wondering if anyone can help me get started with creating a room
Can anyone (maybe an XSL-fan?) help me find any advantages with handling presentation of
Can anyone suggest some good browser add-on tools/extensions to help with development? I have
Can anyone recommend a good resource -- book, website, article, etc -- to help
Are there some help resources, or can anyone give me a brief Idea how
Can anyone tell me how I can display a status message like 12 seconds
Can anyone recommend a good library for generating an audio file, such as mp3,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.