Solve TaskC20

Snooze...
This commit is contained in:
eddie 2024-12-18 17:56:18 +01:00
parent 8bb69f7cf5
commit 8b27cc30c1
2 changed files with 23 additions and 0 deletions

17
TaskC20/solution.py Normal file
View File

@ -0,0 +1,17 @@
import re
import sys
def extract_phone_number(line: str) -> str:
# The Pattern:
# - Start word-boundary
# - An optional leading zero
# - Two digits followed by a space
# - Then a digit, followed by '-', then three digits, then '-', then three digits
p = re.compile(r'\b([0]?\d{2}\s\d-\d{3}-\d{3})\b')
m = p.search(line)
return m.group(1) if m else "<NONE>"
if __name__ == "__main__":
for line in sys.stdin:
stripped_line = line.strip()
print(extract_phone_number(stripped_line))

6
TaskC20/test.out Normal file
View File

@ -0,0 +1,6 @@
00 0-000-000
000 0-000-000
<NONE>
061 5-555-553
61 5-555-553
<NONE>