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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:04:03+00:00 2026-06-12T03:04:03+00:00

I have a username and password input field and I’m using the jquery validation

  • 0

I have a username and password input field and I’m using the jquery validation plugin to validate my form. I know how to create custom rules and all but I’m just wondering how to write the regexp for it.

I want the password to be:
1) minimum 8 characters (this is taken care of by minlength in rules)
2) Contain a symbol (!@#$%^&*?~`'”)
3) Contain a number (0-9)

jQuery.validator.addMethod("password", function(value, element) { 
        return this.optional(element) || /.../i.test(value);
    }, jQuery.format("Enter correct password")); 

I just don’t know how to write the regex to search the input and see if it contains at least 1 symbol and 1 number. Any ideas? Thanks

  • 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-06-12T03:04:07+00:00Added an answer on June 12, 2026 at 3:04 am

    Here we go

    ^(?=.*?[@#$%^&*?~`])(?=.*?[0-9]).{8,}$
    

    It tells, starting from the beginning of the string, that any string with length >=8 is ok

    .{8,}
    

    You need also to tell that from the beginning of the string you need a symbol in any position

    ^(?=.*?[@#$%^&*?~`])
    

    And a digit in any position

    (?=.*?[0-9])
    

    using positive lookahead

    A working example

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

Sidebar

Related Questions

I have a simple login form that captures username/password with some simple Javascript (JQuery)
I Have done a login form validation using jquery, But Thing is error message
I'm learning about bean validation. I have created simple form with username and password
I have a login form that has Username and password as inputs from user
I have a website that allows a person to create an account with username/password.
I have overridden the SimpleHandler to pass a username and password using soap4r. the
I have a signup form with 3 fields: Username Email Password On most browsers
HTML: <form method=post id=NewUserRegistration action=inc/q/addNewUser.php> Username: <input type=text name=userName /> <br /> Password: <input
I have a simple create new account page with username, email, confirm email, password,
For web sites that have username/password text input fields, the browser usually handily offers

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.