Advertisement
elena1234

FancyBarcodes-ExamPreparation

Dec 6th, 2020 (edited)
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.39 KB | None | 0 0
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. namespace FancyBarcodes
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int numberOfLines = int.Parse(Console.ReadLine());
  11.             Regex regexForBarcode = new Regex(@"@#+[A-Z][A-Za-z0-9]{4,}[A-Z]@#+");
  12.             Regex regexForDigits = new Regex(@"[0-9]");
  13.             for (int i = 0; i < numberOfLines; i++)
  14.             {
  15.                 string barcodeInput = Console.ReadLine();
  16.                 Match matchValidBarcode = regexForBarcode.Match(barcodeInput);
  17.                 MatchCollection matchesDigits = regexForDigits.Matches(barcodeInput);
  18.                
  19.                 if (matchValidBarcode.Success)
  20.                 {
  21.                     string productGroup = "00";
  22.                     if (regexForDigits.IsMatch(barcodeInput))
  23.                     {
  24.                         productGroup = string.Empty;
  25.                         foreach (Match matches in matchesDigits)
  26.                         {                      
  27.                             productGroup += matches.Value;
  28.                         }
  29.                     }
  30.  
  31.                     Console.WriteLine($"Product group: {productGroup}");
  32.                 }
  33.  
  34.                 else
  35.                 {
  36.                     Console.WriteLine("Invalid barcode");
  37.                 }
  38.             }          
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement