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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T11:05:33+00:00 2026-05-26T11:05:33+00:00

preg_match(/^([0-9a-zA-Z])+$/, $newvalue) I have the above code for preg_match, to check if user input

  • 0
preg_match("/^([0-9a-zA-Z])+$/", $newvalue)

I have the above code for preg_match, to check if user input has at least one lower case, one upper case and one numeric value..

but this does’nt seem to work, as it accepts values if they are numeric OR lower case or upper case. and does’t make sure that one of each is present

What needs to be fixed?

  • 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-26T11:05:34+00:00Added an answer on May 26, 2026 at 11:05 am

    Try this.It checks the all criteria of $newvalue containing at least one number, one lower case string and one upper case string

    preg_match("(^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).+$)",$newvalue)
    

    Example:

    <?php 
    if(preg_match("(^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).+$)","RoHan123aA"))
    {
      echo ":) success";
    }
    else
    {
      echo ":(";
    }
    
    ?>
    

    Refer this.It works.

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

Sidebar

Related Questions

The conditions of the preg_match are: can only contain letters (upper or lower case)
preg_match(/\w+/, $s, $matches); I have the PHP code above. I use it to match
preg_match(/\b(word1|word2)\b/iu, 'text text text word1 text text'); For some reason the above code doesn't
if (preg_match('(\p{Nd}{4}/\p{Nd}{2}/\p{Nd}{2}/\p{L}+)', '2010/02/14/this-is-something')) { // do stuff } The above code works. However this
preg_match(/^[-\w.]+@([A-z0-9][-A-z0-9]+\.)+[A-z]{2,4}$/, $email); I want to modify this regex to allow emails such as user+one@wherever.com
preg_match() gives one match. preg_match_all() returns all matches. preg_split() returns all splits. How can
I have the following preg_match to replace any html links to another url it
preg_match has limit of str on PHP 5.2.5 <?php $str1 = 'a@b%c@d' . str_repeat
preg_match_all(/[^A-Za-z0-9]/,$new_password,$out); The above only checks the 1st character, how to check whether all are
I need to use preg_match to check that only a-z0-9. is used (including full

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.