Regular expressions are an important element in program development. they provide strings used to describe or match text, such as specific characters, words, or expressions.
Regular expressions are an important element in program development. they provide strings used to describe or match text, such as specific characters, words, or expressions. However, in some cases, it is complicated and time-consuming to use a regular expression to verify a string. This article introduces you to the writing of 10 common practical PHP regular expressions, hoping to help your work.
1. verify the Email address
This is a regular expression used to verify the email. But it is not an efficient and perfect solution. It is not recommended here.
$email = "test@ansoncheung.tk";if (preg_match('/^[^09][azAZ09_]+([.][azAZ09_]+)[@][azAZ09_]+([.][azAZ09_]+)[.][azAZ]{2,4}$/',$email)) {echo "Your email is ok.";} else {echo "Wrong email address format";}
Filer_var is recommended for more effective email address verification.
if (filter_var('test+email@ansoncheung', FILTER_VALIDATE_EMAIL)) {echo "Your email is ok.";} else {echo "Wrong email address format.";}
2. verify the user name
This is an instance used to verify the user name, including letters, numbers (AZ, az, 09), underscores, and a minimum of 5 characters, up to 20 characters. You can also modify the minimum and maximum values as needed.
$username = "user_name12";if (preg_match('/^[az\d_]{5,20}$/i', $username)) {echo "Your username is ok.";} else {echo "Wrong username format.";}
3. verify the phone number
This is an example of US phone number verification.
$phone = "(021)4232323";if (preg_match('/\(?\d{3}\)?[\s.]?\d{3}[\s.]\d{4}/x', $phone)) {echo "Your phone number is ok.";} else {echo "Wrong phone number.";}
4. verify the IP address
This is an instance used to verify the IPv4 address.
$IP = "198.168.1.78";if (preg_match('/^(([19]?[09]|1[09]{2}|2[04][09]|25[05]).){3}([19]?[09]|1[09]{2}|2[04][09]|25[05])$/',$IP)) {echo "Your IP address is ok.";} else {echo "Wrong IP address.";}
5. verify the ZIP code
This is an instance used to verify the zip code.
$zipcode = "123455434";if (preg_match("/^([09]{5})([09]{4})?$/i",$zipcode)) {echo "Your Zip code is ok.";} else {echo "Wrong Zip code.";}
6. verify SSN (social insurance number)
This is an instance that verifies SSN in the United States.
$ssn = "333232329";if (preg_match('/^[\d]{3}[\d]{2}[\d]{4}$/',$ssn)) {echo "Your SSN is ok.";} else {echo "Wrong SSN.";}
7. verify the credit card number
$cc = "378282246310005";if (preg_match('/^(?:4[09]{12}(?:[09]{3})?|5[15][09]{14}|6011[09]{12}|3(?:0[05]|[68][09])[09]{11}|3[47][09]{13})$/', $cc)) {echo "Your credit card number is ok.";} else {echo "Wrong credit card number.";}
8. verify the domain name
$url = "http://ansoncheung.tk/";if (preg_match('/^(http|https|ftp):\/\/([AZ09][AZ09_](?:\.[AZ09][AZ09_])+):?(\d+)?\/?/i', $url)) {echo "Your url is ok.";} else {echo "Wrong url.";}
9. extract domain names from a specific URL
4$url = "http://ansoncheung.tk/articles";preg_match('@^(?:http://)?([^/]+)@i', $url, $matches);$host = $matches[1];echo $host;
10. highlight keywords in the text
$text = "Sample sentence from AnsonCheung.tk, regular expression has become popular in web programming. Now we learn regex. According to wikipedia, Regular expressions (abbreviated as regex or regexp, with plural forms regexes, regexps, or regexen) are written in a formal language that can be interpreted by a regular expression processor";$text = preg_replace("/\b(regex)\b/i", '\1', $text);echo $text;