为了账号安全,请及时绑定邮箱和手机立即绑定

10个实用的PHP正则表达式汇总

标签:
PHP

正则表达式是程序开发中一个重要的元素,它提供用来描述或匹配文本的字符串,如特定的字符、词或算式等。但在某些情况下,用正则表达式去验证一个字符串比较复杂和费时。本文为你介绍10种常见的实用PHP正则表达式的写法,希望对你的工作有所帮助。

 1. 验证E-mail地址

  这是一个用于验证电子邮件的正则表达式。但它并不是高效、完美的解决方案。在此不推荐使用。
1
2
3
4
5
6
7
8
9
$email = "test@ansoncheung.tk";
if
(pregmatch('/^[^0-9][a-zA-Z0-9]+([.][a-zA-Z0-9]+)*[@][a-zA-Z0-9]+([.][a-zA-Z0-9_]+)*[.][a-zA-Z]{2,4}$/',$email))
{
echo "Your email is ok.";
} else {
echo "Wrong email address
format";
}

  为了更加有效验证电子邮件地址,推荐使用filer_var。

1
2
3
4
5
6
if (filter_var('test+email@ansoncheung', FILTER_VALIDATE_EMAIL)) {
echo
"Your email is ok.";
} else {
echo "Wrong email address format.";
}

  1. 验证用户名

  这是一个用于验证用户名的实例,其中包括字母、数字(A-Z,a-z,0-9)、下划线以及最低5个字符,最大20个字符。同时,也可以根据需要,对最小值和最大值做合理的修改。

1
2
3
4
5
6
7
8
$username = "user_name12";
if (pregmatch('/^[a-z\d]{5,20}$/i', $username))
 {
  echo "Your username is ok.";
 } else {
echo "Wrong username
 format.";
 }

  1. 验证电话号码

  这是一个验证美国电话号码的实例。
1
2
3
4
5
6
7
8
$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地址的实例。

1
2
3
4
5
6
7
8
9
$IP = "198.168.1.78";
if
(preg_match('/^(([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$/',$IP))
{
echo "Your IP address is ok.";
} else {
echo "Wrong IP
address.";
}

  1. 验证邮政编码

  这是一个用来验证邮政编码的实例。

1
2
3
4
5
6
7
8
$zipcode = "12345-5434";
if
(preg_match("/^([0-9]{5})(-[0-9]{4})?$/i",$zipcode)) {
echo "Your Zip code
is ok.";
} else {
echo "Wrong Zip code.";
}

  1. 验证SSN(社会保险号)

  这是一个验证美国SSN的实例。

1
2
3
4
5
6
7
$ssn = "333-23-2329";
if (preg_match('/^[\d]{3}-[\d]{2}-[\d]{4}$/',$ssn))
{
echo "Your SSN is ok.";
} else {
echo "Wrong SSN.";
}

  1. 验证信用卡号

1
2
3
4
5
6
7
8
9
$cc = "378282246310005";
if
(preg_match('/^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6011[0-9]{12}|3(?:0[0-5]|[68][0-9])[0-9]{11}|3[47][0-9]{13})$/',
$cc)) {
echo "Your credit card number is ok.";
} else {
echo
"Wrong credit card number.";
}

  1. 验证域名

1
2
3
4
5
6
7
8
$url = "http://ansoncheung.tk/";
if
(pregmatch('/^(http|https|ftp):\/\/([A-Z0-9][A-Z0-9-](?:.[A-Z0-9][A-Z0-9_-])+):?(\d+)?\/?/i',
$url)) {
echo "Your url is ok.";
} else {
echo "Wrong url.";
}

  1. 从特定URL中提取域名

1
2
3
4
5
6
$url =
"http://ansoncheung.tk/articles";
preg_match('@^(?:http://)?([^/]+)@i',
$url, $matches);
$host = $matches[1];
echo $host;

  1. 将文中关键词高亮显示

1
2
3
4
5
6
7
8
9
10
11
12
$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;

  希望本文所述对大家的PHP程序设计有所帮助。

点击查看更多内容
14人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消