Advertisement
vencinachev

IBAN validation

Apr 27th, 2021
1,313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.66 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Numerics;
  5. using System.Text;
  6. using System.Text.RegularExpressions;
  7. using System.Threading.Tasks;
  8.  
  9. namespace IBAN
  10. {
  11.     class Program
  12.     {
  13.         static int mod(String num, int a)
  14.         {
  15.             // Initialize result
  16.             int res = 0;
  17.  
  18.             // One by one process all
  19.             // digits of 'num'
  20.             for (int i = 0; i < num.Length; i++)
  21.                 res = (res * 10 + (int)num[i] - '0') % a;
  22.  
  23.             return res;
  24.         }
  25.         static bool CheckIBAN(string iban)
  26.         {
  27.             Match m = Regex.Match(iban, "^BG[0-9A-Z]{20}$");
  28.             if (!m.Success)
  29.             {
  30.                 return false;
  31.             }
  32.             string iban1 = iban.Substring(4) + iban.Substring(0, 4);
  33.             StringBuilder sb = new StringBuilder();
  34.             foreach (char sym in iban1)
  35.             {
  36.                 if (char.IsUpper(sym))
  37.                 {
  38.                     sb.Append(sym - 'A' + 10);
  39.                 }
  40.                 else
  41.                 {
  42.                     sb.Append(sym);
  43.                 }
  44.             }
  45.             string iban2 = sb.ToString();
  46.             /*if (mod(iban2, 97) != 1)
  47.             {
  48.                 return false;
  49.             }*/
  50.             BigInteger num = BigInteger.Parse(iban2);
  51.             if (num % 97 != 1)
  52.             {
  53.                 return false;
  54.             }
  55.             return true;
  56.         }
  57.         static void Main(string[] args)
  58.         {
  59.             string iban1 = "BG80BNBG96611020345678";
  60.             Console.WriteLine(CheckIBAN(iban1));
  61.         }
  62.     }
  63. }
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement