Skip to content

Commit

Permalink
fix(GiniBankSDK): Add more patterns from PR comment
Browse files Browse the repository at this point in the history
PP-106
  • Loading branch information
igor-gini committed Feb 24, 2025
1 parent e27a950 commit 6baa3d8
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ func extractIBANS(string: String) -> [String] {
number = number.replacingOccurrences(of: "o", with: "0")
number = number.replacingOccurrences(of: "O", with: "0")
number = number.replacingOccurrences(of: "Q", with: "0")
number = number.replacingOccurrences(of: "B", with: "8")
number = number.replacingOccurrences(of: "Z", with: "7")
number = number.replacingOccurrences(of: "z", with: "7")
number = number.trimmingCharacters(in: .whitespaces)
number = number.replacingOccurrences(of: ",", with: "")
number = number.replacingOccurrences(of: ".", with: "")
Expand Down

0 comments on commit 6baa3d8

Please sign in to comment.