Jump to content

Validating first and Last name from One Input


phpretard

Recommended Posts

I am sure there is a simple solution for this...

 

So for I have come up with this.

 

if(preg_match("/^[a-zA-Z][a-zA-Z -]+$/", $Name) === 0)

 

My objective is to requrire a first name and last name.

 

This will require a space between 2 words.

 

John = NO

 

JohnDoe = NO

 

John Doe = YES

 

Can anyone help me with this one?

 

Link to comment
Share on other sites

Did you intent to put that hyphen inside the second character class? This will work for the examples you gave:

 

<?php
$Name = 'John Doe';
if (preg_match('|^[a-z]+\s[a-z]+$|iD', $Name)) {
echo 'Name OK!';
} else {
echo 'Name invalid.';
}
?>

 

\s matches a white space, the pattern modifier i makes the search case insensitive, and the pattern mod. D makes the dollar sign only match the end of subject (if not specified, it also matches a newline character at the end, which would make the whole RegEx match e.g. "John Doe\n").

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.