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 6596611
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:05:54+00:00 2026-05-25T18:05:54+00:00

I have written a RegEx for password which takes any character with min length

  • 0

I have written a RegEx for password which takes any character with min length of 5 and maximum length of 30.

I’ve tried the following expression:

(\S){5,30}

but it also accepts passwords with more than 30 characters. How can I make sure it doesn’t match such passwords?

  • 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-25T18:05:55+00:00Added an answer on May 25, 2026 at 6:05 pm

    Your problem is that your regex also matches substrings of your input.

    \S{5} (or (\S){5}) matches 12345 in the string 1234567890.

    So you need to anchor your regex:

    ^\S{5,30}$
    

    validates a 5-30 character, non-whitespace string. The parentheses around \S are useless and unnecessary.

    At any rate, why would you impose a length restriction on a password? And why wouldn’t you allow whitespace characters in it? See also this.

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

Sidebar

Related Questions

I have written following regular expression /^[A-Za-z0-9-_\s]*$/ in PHP which allows numbers, letters, spaces,
I have written a Regex which will take only integers but I need to
I have written following regex But its not working. Can you please help me?
I have written the following regex to match a set of e-mails from HTML
I have the following aaaa_bb_cc string to match and written a regex pattern like
I have written the following regular expression. It should match only filenames or folder
I am working on a website, where i have written the following regex to
I have written regex to validate URL which could be either like example.com www.example.com
I have written this regex that works, but honestly, it’s like 75% guesswork. The
I have written regex to validate URL which could be either like google.com www.google.com

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.