You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/Vre1/Check whether a given value...

17 lines
393 B
JavaScript

function is_ukPostCode(str)
{
regexp = /^[A-Z]{1,2}[0-9RCHNQ][0-9A-Z]?\s?[0-9][ABD-HJLNP-UW-Z]{2}$|^[A-Z]{2}-?[0-9]{4}$/;
if (regexp.test(str))
{
return true;
}
else
{
return false;
}
}
console.log(is_ukPostCode("B294HJ"));
console.log(is_ukPostCode("7892"));