Skip to content

Commit 0f720d1

Browse files
committed
added test case
1 parent 72e03cc commit 0f720d1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Telephone_Number_Validator/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Return `true` if the passed string looks like a valid US phone number.
2+
3+
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):
4+
5+
```
6+
555-555-5555
7+
(555)555-5555
8+
(555) 555-5555
9+
555 555 5555
10+
5555555555
11+
1 555 555 5555
12+
```
13+
14+
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`.

0 commit comments

Comments
 (0)