193. Valid Phone Numbers有效的电话号码Bash

给定一个包含电话号码列表(每行一个)的文本文件file.txt,编写一个线性衬里脚本来打印所有有效的电话号码。

>假定有效的电话号码必须以以下两种格式之一出现:(xxx)xxx-xxxx或xxx-xxx-xxxx。 (x表示一个数字)

>还可以假定文本文件中的每一行都不得包含前导或尾随空格

假设file.txt具有以下内容:

987-123-4567

123 456 7890

(123) 456-7890

您的脚本应输出以下有效电话号码:

987-123-4567

(123) 456-7890

# 1.0 Read from the file file.txt and output all valid phone numbers to stdout.
cat file.txt | grep -P "^(\d{3}-|\(\d{3}\) )\d{3}-\d{4}$"
# 2.0 Read from the file file.txt and output all valid phone numbers to stdout.
grep -P '^(\d{3}-|\(\d{3}\) )\d{3}-\d{4}$' file.txt

没学过bash,强行解释一波:


cat file.txt:一次性读取文件

|: 上一条命令的输出,作为下一条命令参数

grep:在一个或多个文件中搜索字符串模板,命令格式:grep [option] pattern file

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值