Files
VK_bot/services/recognizer.py
2026-04-30 18:38:38 +03:00

11 lines
224 B
Python

import re
from typing import Optional
def recognize_pinpad_code(text: str) -> Optional[int]:
if not text:
return None
match = re.search(r"\b\d{3}\b", text)
return int(match.group()) if match else None