Valid Phone Numbers
Posted jzssuanfa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Valid Phone Numbers相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/valid-phone-numbers/
# Read from the file file.txt and output all valid phone numbers to stdout.
awk ‘/^([0-9]{3}-|\([0-9]{3}\) )[0-9]{3}-[0-9]{4}$/{print $0}‘ file.txt
以上是关于Valid Phone Numbers的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] Valid Phone Numbers
Leetcode 193.Valid Phone Numbers