FILTER_VALIDATE_REGEXP

$string = "Welcome to plus2net.com";

var_dump(filter_var($string, FILTER_VALIDATE_REGEXP,
array("options"=>array("regexp"=>"/^W(.*)/"))))
Output is
string(23) "Welcome to plus2net.com"
By using FILTER_VALIDATE_REGEXP we can validate Regular expression .

Change the $string variable value to
$string="ZWelcome to plus2net.com";
Output is now
bool(false)

Example 2

$string = "Welcome to plus2net.com"; // change the first char and see the result

if(filter_var($string, FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>"/^W(.*)/")))){
echo "yes Cleared ";	
}else{
echo " No not cleared ";	
}
Output is here
yes Cleared

Example 3: Validating an Email Format with Custom Regex

Although PHP has FILTER_VALIDATE_EMAIL, sometimes custom validation is needed. This example validates an email using a regular expression:

$email = "test@example.com";
$pattern = "/^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/";
if (filter_var($email, FILTER_VALIDATE_REGEXP, array("options" => array("regexp" => $pattern)))) {
    echo "Valid Email";
} else {
    echo "Invalid Email";
}

Example 4: Ensuring Password Strength

We can use a regex to ensure a password contains at least one uppercase letter, one lowercase letter, one digit, and is at least 8 characters long.

$password = "Password123";
$pattern = "/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$/";
if (filter_var($password, FILTER_VALIDATE_REGEXP, array("options" => array("regexp" => $pattern)))) {
    echo "Password is strong.";
} else {
    echo "Password is weak.";
}

Example 5: Validating URLs with Specific Domain

This example validates URLs ( php has FILTER_VALIDATE_URL) that are specific to a certain domain, like *.com domains:

$url = "https://www.example.com";
$pattern = "/^https?:\/\/(www\.)?([a-z0-9]+)\.com$/i";
if (filter_var($url, FILTER_VALIDATE_REGEXP, array("options" => array("regexp" => $pattern)))) {
    echo "Valid URL";
} else {
    echo "Invalid URL";
}

Filter reference Validating Boolean data Ctype_alnum to check alphanumeric characters Validating Email address
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com







    Post your comments , suggestion , error , requirements etc here





    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer