-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path4_TelephoneNumberValidator
More file actions
141 lines (133 loc) · 4.47 KB
/
Copy path4_TelephoneNumberValidator
File metadata and controls
141 lines (133 loc) · 4.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*Telephone Number Validator
Return true if the passed string looks like a valid US phone number.
The user may fill out the form field any way they choose as long as it has the format of a valid US number.
The following are examples of valid formats for US numbers (refer to the tests below for other variants):
555-555-5555
(555)555-5555
(555) 555-5555
555 555 5555
5555555555
1 555 555 5555
For this challenge you will be presented with a string such as 800-692-7753 or 8oo-six427676;laskdjf.
Your job is to validate or reject the US phone number based on any combination of the formats provided above.
The area code is required. If the country code is provided, you must confirm that the country code is 1.
Return true if the string is a valid US phone number; otherwise return false.
Tests
Passed:telephoneCheck("555-555-5555") should return a boolean.
Passed:telephoneCheck("1 555-555-5555") should return true.
Passed:telephoneCheck("1 (555) 555-5555") should return true.
Passed:telephoneCheck("5555555555") should return true.
Passed:telephoneCheck("555-555-5555") should return true.
Passed:telephoneCheck("(555)555-5555") should return true.
Passed:telephoneCheck("1(555)555-5555") should return true.
Passed:telephoneCheck("555-5555") should return false.
Passed:telephoneCheck("5555555") should return false.
Passed:telephoneCheck("1 555)555-5555") should return false.
Passed:telephoneCheck("1 555 555 5555") should return true.
Passed:telephoneCheck("1 456 789 4444") should return true.
Passed:telephoneCheck("123**&!!asdf#") should return false.
Passed:telephoneCheck("55555555") should return false.
Passed:telephoneCheck("(6054756961)") should return false.
Passed:telephoneCheck("2 (757) 622-7382") should return false.
Passed:telephoneCheck("0 (757) 622-7382") should return false.
Passed:telephoneCheck("-1 (757) 622-7382") should return false.
Passed:telephoneCheck("2 757 622-7382") should return false.
Passed:telephoneCheck("10 (757) 622-7382") should return false.
Passed:telephoneCheck("27576227382") should return false.
Passed:telephoneCheck("(275)76227382") should return false.
Passed:telephoneCheck("2(757)6227382") should return false.
Passed:telephoneCheck("2(757)622-7382") should return false.
Passed:telephoneCheck("555)-555-5555") should return false.
Passed:telephoneCheck("(555-555-5555") should return false.
Passed:telephoneCheck("(555)5(55?)-5555") should return false.
Passed:telephoneCheck("55 55-55-555-5") should return false.
Passed:telephoneCheck("11 555-555-5555") should return false.
*/
const PHONE_CHARS = [
'(',')','-'
];
//Valid US Numbers Start with 1
//Valid US Numbers are 10 or 11 digits long
function telephoneCheck(str) {
str = str.replace(/\s/gi,'').split("");
if(str.length < 10 || str.length > 14)
{
return false;
}
else if(str.length == 10)
{
//Must be all numbers no leading 1 considered
console.log(10);
return str.every(x => parseInt(x));
}
else if(str.length == 11)
{
//Must be all numbers with leading 1 considered
console.log(11);
console.log(str);
return parseInt(str[0])===1 && telephoneCheck(str.splice(1,10).join(""));
}
else if(str.length == 12)
{
//Must be all numbers no leading 1 considered
//must have xxx-xxx-xxxx or (xxx)xxx xxxx
console.log(12);
if(str[0] === PHONE_CHARS[0] && str[4] === PHONE_CHARS[1])
{
str.splice(4,1);
str.shift();
return str.every(x => parseInt(x));
}
else if(str[3]===PHONE_CHARS[2] && str[7]===PHONE_CHARS[2])
{
str.splice(3,1);
str.splice(6,1);
return str.every(x => parseInt(x));
}
else
{
return false;
}
}
else if(str.length == 13)
{
//Must be 1xxx-xxx-xxxx
//OR 1(xxx)xxxxxxx
//OR (xxx)xxx-xxxx
console.log(13);
if(parseInt(str[0])===1)
{
return telephoneCheck(str.splice(1,12).join(""));
}
else if(str[0] === PHONE_CHARS[0]
&& str[4] == PHONE_CHARS[1]
&& str[8]== PHONE_CHARS[2]
)
{
str.splice(8,1);
str.splice(4,1);
str.shift();
return telephoneCheck(str.join(""));
}
else
{
return false;
}
}
else if(str.length == 14)
{
//Must be 1(xxx)xxx-xxxx
console.log(14);
if(str[1]===PHONE_CHARS[0])
{
return parseInt(str[0])===1 && telephoneCheck(str.splice(1,13).join(""));
}
else
{
return false;
}
}
}
//console.log(telephoneCheck("555-555-5555"));
//console.log(telephoneCheck("(6054756961)"));
console.log("Sol: " + telephoneCheck("11 347-569-6111"));