Skip to content

Latest commit

 

History

History
executable file
·
12 lines (6 loc) · 301 Bytes

193.md

File metadata and controls

executable file
·
12 lines (6 loc) · 301 Bytes

193. Valid Phone Numbers

BASH again.

You may assume that a valid phone number must appear in one of the following two formats: (xxx) xxx-xxxx or xxx-xxx-xxxx. (x means a digit)

we may need to use regex? therefore the regex in the shell!

grep -P means Perl regex!

we can grep a file directly.