Problem Description
Given a text file file.txt
that contains a list of phone numbers (one per line), write a one-liner bash script to print all valid phone numbers. A valid phone number must appear in one of the following two formats: (xxx) xxx-xxxx or xxx-xxx-xxxx. Each line in the text file must not contain leading or trailing white spaces.
Key Insights
- Valid phone numbers can be in two specific formats.
- The task involves pattern matching to filter valid numbers.
- Shell scripting provides tools for text processing and pattern matching.
Space and Time Complexity
Time Complexity: O(n), where n is the number of lines in the file. Space Complexity: O(1), as we only store the valid lines temporarily.
Solution
The solution involves using a combination of grep
and regex to filter valid phone numbers from the input file. The approach leverages pattern matching to identify lines that conform to the specified phone number formats. The regex patterns will target the specific structure of valid phone numbers.