Tutorial Simple Zipcode Range Tester
This regex below tests the provided zip code if it starts with the numbers 096 and that there are exactly 2 numbers after it. If it does, it...
https://iskablogs.blogspot.com/2014/03/tutorial-simple-zipcode-range-tester.html
This regex below tests the provided zip code if it starts with the numbers 096 and that there are exactly 2 numbers after it. If it does, it echos Yes, if not, it echos No. In this test case, it would echo Yes.
$zipcode='09607';
echo 'Zipcode in range?
';
if(preg_match('/^096[0-9]{2}$/', $zipcode))
echo "Yes";
else
echo "No";
?>
$zipcode='09607';
echo 'Zipcode in range?
';
if(preg_match('/^096[0-9]{2}$/', $zipcode))
echo "Yes";
else
echo "No";
?>