admin 發表於 2016-1-17 10:55:37

10个实用的PHP正则表达式

10-useful-php-regular-expression
1. 验证E-mail地址
          这是一个用于验证电子邮件的正则表达式。但它并不是高效、完美的解决方案。在此不推荐使用。
$email = "test@ansoncheung.tk";
if (preg_match('/^[^0-9]+([.]+)*[@]+([.]+)*[.]{2,4}$/',$email)) {
    echo "Your email is ok.";
} else {
    echo "Wrong email address format";
}
2. 验证用户名
          这是一个用于验证用户名的实例,其中包括字母、数字(A-Z,a-z,0-9)、下划线以及最低5个字符,最大20个字符。同时,也可以根据需要,对最小值和最大值做合理的修改。
$username = "user_name12";
if (preg_match('/^{5,20}$/i', $username)) {
    echo "Your username is ok.";
} else {
    echo "Wrong username format.";
}
3. 验证电话号码
          这是一个验证美国电话号码的实例。
$phone = "(021)423-2323";
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. 验证IP地址
          这是一个用来验证IPv4地址的实例。
$IP = "198.168.1.78";
if (preg_match('/^((?|1{2}|2|25).){3}(?|1{2}|2|25)$/',$IP)) {
    echo "Your IP address is ok.";
} else {
    echo "Wrong IP address.";
}
5. 验证邮政编码
          这是一个用来验证邮政编码的实例。
$zipcode = "12345-5434";
if (preg_match("/^({5})(-{4})?$/i",$zipcode)) {
echo "Your Zip code is ok.";
} else {
echo "Wrong Zip code.";
}
6. 验证SSN(社会保险号)
          这是一个验证美国SSN的实例。
$ssn = "333-23-2329";
if (preg_match('/^[\d]{3}-[\d]{2}-[\d]{4}$/',$ssn)) {
    echo "Your SSN is ok.";
} else {
    echo "Wrong SSN.";
}
 7. 验证信用卡号
$cc = "378282246310005";
if (preg_match('/^(?:4{12}(?:{3})?|5{14}|6011{12}|3(?:0|){11}|3{13})$/', $cc)) {
    echo "Your credit card number is ok.";
} else {
    echo "Wrong credit card number.";
}
8. 验证域名
$url = "http://ansoncheung.tk/";
if (preg_match('/^(http|https|ftp):\/\/(*(?:\.*)+):?(\d+)?\/?/i', $url)) {
echo "Your url is ok.";
} else {
echo "Wrong url.";
}
9. 从特定URL中提取域名
$url = "http://ansoncheung.tk/articles";
preg_match('@^(?:http://)?([^/]+)@i', $url, $matches);
$host = $matches;
echo $host;
10. 将文中关键词高亮显示
$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", '<span style="background:#5fc9f6">\1</span>', $text);
echo $text;











頁: [1]
查看完整版本: 10个实用的PHP正则表达式