Jump to content

Regex, what's going wrong? (I'm new to Regex)


Far Cry

Recommended Posts

function validPassword($password)
{

$isValid = false;

if(strlen($password) >= 6){

if(preg_match('/^[a-zA-Z0-9]{1,}$/',$password)){
  $isValid = true;
}
else{
echo"<center><font color=\"red\">Your password must have at least one number and at least one upper and lower-case letter!</font></center>";
$isValid = false;
}
}
  else{
  echo"<center><font color=\"red\">Your password must contain at least six (6) characters!</font></center>";
  $isValid = false;
  }
  return $isValid;
}

 

The above code is supposed to validate a password. If (as seen in the code), the string is less than six characters, the else statement executes no problem. However, the else statement for the if statement (preg_match('/^[a-zA-Z0-9]{1,}$/',$password) does not execute, even if the string is valid.

 

I cannot figure this out, thanks in advance!

Link to comment
Share on other sites

If you want the password to contain at least 1 number, 1 upper-case letter, and 1 lower-case letter it seems like you would need to set the test up differently. Maybe something like:

 

<?php
...

if(!preg_match('/[a-z]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one lower-case letter!</font></center>";
     $isValid = false;
} elseif(!preg_match('/[A-Z]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one upper-case letter!</font></center>";
     $isValid = false;
} elseif(!preg_match('/[0-9]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one number!</font></center>";
     $isValid = false;
} else {
     $isValid = true;
}

...
?>

 

 

Note that the code is untested.

Link to comment
Share on other sites

If you want the password to contain at least 1 number, 1 upper-case letter, and 1 lower-case letter it seems like you would need to set the test up differently. Maybe something like:

 

<?php
...

if(!preg_match('/[a-z]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one lower-case letter!</font></center>";
     $isValid = false;
} elseif(!preg_match('/[A-Z]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one upper-case letter!</font></center>";
     $isValid = false;
} elseif(!preg_match('/[0-9]+/',$password)) {
     echo"<center><font color=\"red\">Your password must have at least one number!</font></center>";
     $isValid = false;
} else {
     $isValid = true;
}

...
?>

 

 

Note that the code is untested.

Thanks! Works great! :-)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.