验证英国短(向外)邮政编码
Posted
技术标签:
【中文标题】验证英国短(向外)邮政编码【英文标题】:Validate UK short (outward) postcode 【发布时间】:2013-07-31 09:37:08 【问题描述】:我正在使用这个验证器:
//validate postcode
function IsPostcode($postcode)
$postcode = strtoupper(str_replace(' ','',$postcode));
if(preg_match("/^[A-Z]1,2[0-9]2,3[A-Z]2$/",$postcode) || preg_match("/^[A-Z]1,2[0-9]1[A-Z]1[0-9]1[A-Z]2$/",$postcode) || preg_match("/^GIR0[A-Z]2$/",$postcode))
return true;
else
return false;
From this link.
但我希望能够验证 ME20 和 TN10 等邮政编码,而不是完整的 ME20 4RN、TN0 4RN。这是邮政编码的一部分,称为“外向编码”。
有人可以帮我解决正则表达式吗?
【问题讨论】:
regular-expressions.info/tutorial.html 有一个库可用于执行此操作gist.github.com/ChrisMcKee/4452116 只需将 incode 设置为可选以仅验证第一部分 您对正则表达式模式了解多少?只需要最基本的正则表达式知识就可以从您已经获得的起点计算出您的答案。我建议去reading up a bit more about regex,而不是问这样一个基本问题。这样你会学到更多。 我真的对它们一无所知,但我只是买了“掌握正则表达式” 【参考方案1】:你可以使用我更新的正则表达式来解决你的问题
它从我这里开始验证英国邮政编码
<?php
function IsPostcode($postcode)
$postcode = strtoupper(str_replace(' ','',$postcode));
if(preg_match("/(^[A-Z]1,2[0-9R][0-9A-Z]?[\s]?[0-9][ABD-HJLNP-UW-Z]2$)/i",$postcode) || preg_match("/(^[A-Z]1,2[0-9R][0-9A-Z]$)/i",$postcode))
return true;
else
return false;
echo $result = IsPostcode('ME20');
?>
输出
1
希望这对你有帮助。
【讨论】:
这似乎不适用于某些代码。我检查的第一个,NW1 不匹配。以上是关于验证英国短(向外)邮政编码的主要内容,如果未能解决你的问题,请参考以下文章