1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/有效电话号码 [valid-phone-numbers].html
2022-03-29 12:43:11 +08:00

25 lines
653 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给定一个包含电话号码列表(一行一个电话号码)的文本文件 <code>file.txt</code>,写一个单行 bash 脚本输出所有有效的电话号码。</p>
<p>你可以假设一个有效的电话号码必须满足以下两种格式: (xxx) xxx-xxxx 或 xxx-xxx-xxxx。x 表示一个数字)</p>
<p>你也可以假设每行前后没有多余的空格字符。</p>
<p> </p>
<p><strong>示例:</strong></p>
<p>假设 <code>file.txt</code> 内容如下:</p>
<pre>
987-123-4567
123 456 7890
(123) 456-7890
</pre>
<p>你的脚本应当输出下列有效的电话号码:</p>
<pre>
987-123-4567
(123) 456-7890
</pre>