Click here to Skip to main content
16,018,442 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i want check user input mail address that is a valid address or no .with java or php or ..
Posted

1 solution

In PHP there is a function called preg_match[^] which returns 1 if a given string matches the provided pattern:
C#
$email_string; // Contains the user's email address

$simple_email_pattern = "/^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/";
$match = preg_match($simple_email_pattern, $email_string);

if ($match === 1) {
    // Valid email
}

For a better Regular Expression I would recommend taking a look at this question[^] on SO

In Java the String class offers a method called matches[^]:
Java
String emailString = "test@test.test";
boolean emailIsValid = emailString.matches("^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\\.[a-zA-Z0-9-.]+$");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900