Program.cs 506 B

1234567891011121314151617181920212223
  1. using System.Text.RegularExpressions;
  2. string num = @"^[A-Z]{1}\d{3}[A-Z]{2}$";
  3. Console.WriteLine("Введите номер:");
  4. while (true)
  5. {
  6. string input = Console.ReadLine();
  7. if (string.IsNullOrEmpty(input))
  8. {
  9. break;
  10. }
  11. if (Regex.IsMatch(input, num))
  12. {
  13. Console.WriteLine("Номер соответствует стандарту.");
  14. }
  15. else
  16. {
  17. Console.WriteLine("Номер не соответствует стандарту.");
  18. }
  19. }