shell匹配有效电话号码

linux 正则表达式:
给定一个包含电话号码列表的文本文件 file.txt,一行一个电话号码,每行前后没有多余的空格字符

查找文本中满足以下格式的电话号码:139xxxxxxxx 或 159xxxxxxxx。(x 表示一个数字)

匹配命令:

cat file.txt |grep -P '^(139|159)\d{8}$'

运行结果:

shell匹配有效电话号码

上一篇:[LeetCode] 159. Longest Substring with At Most Two Distinct Characters_Medium tag: Two pointers


下一篇:工作159:根据id传向把对象里面的整个数据传向下个接口