题目:
Given a text file file.txt that
contains list of phone numbers (one per line), write a one liner bash script to print all valid phone numbers.
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)
You may also assume each line in the text file must not contain leading or trailing white spaces.
For example, assume that file.txt has
the following content:
987-123-4567 123 456 7890 (123) 456-7890Your script should output the following valid phone numbers:
987-123-4567 (123) 456-7890
|
1
2
|
# Read from the file file.txt and output all valid phone numbers to stdout.grep '[(0-9][0-9][0-9)][- ][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]' file.txt |
|
1
|
grep '^(\{0,1\}[0-9]\{3\}\{0,1\}[-
][0-9]\{3\}-[0-9]\{4\}$' file.txt |
|
1
|
grep "^(\{0,1\}[0-9]\{3\}\(-\|) \)[0-9]\{3\}-[0-9]\{4\}$" file.txt |
|
1
|
grep "\(^([0-9]\{3\}) \|^[0-9]\{3\}-\)[0-9]\{3\}-[0-9]\{4\}$" file.txt |

这是一篇关于如何编写一行bash shell脚本来从文本文件中筛选并打印符合特定格式((xxx) xxx-xxxx或xxx-xxx-xxxx)的有效电话号码的文章。文章假定输入文件中每行只包含一个电话号码且无前导或尾随空格。
218

被折叠的 条评论
为什么被折叠?



