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
483 B
JavaScript

function is_socialSecurity_Number(str)
{
regexp = /^(?!000|666)[0-8][0-9]{2}-(?!00)[0-9]{2}-(?!0000)[0-9]{4}$/;
if (regexp.test(str))
{
return true;
}
else
{
return false;
}
}
console.log(is_socialSecurity_Number("019-90-5680"));
console.log(is_socialSecurity_Number("K8V-3Y1"));