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...

19 lines
422 B
JavaScript

function is_caPostalCode(str)
{
regexp = /^(?!.*[DFIOQU])[A-VXY][0-9][A-Z]\s?[0-9][A-Z][0-9]$/;
if (regexp.test(str))
{
return true;
}
else
{
return false;
}
}
console.log(is_caPostalCode("K8V3Y1"));
console.log(is_caPostalCode("K8V 3Y1"));
console.log(is_caPostalCode("Z4V4X1"));