Added SplitSortCode helper
This commit is contained in:
parent
dbc425ea9a
commit
e4456a5df8
1 changed files with 14 additions and 1 deletions
|
@ -11,7 +11,7 @@ namespace BankingBot.Helpers
|
||||||
public static string[] SplitCardNumber(string cardNumber)
|
public static string[] SplitCardNumber(string cardNumber)
|
||||||
{
|
{
|
||||||
if (cardNumber.Length != 16)
|
if (cardNumber.Length != 16)
|
||||||
throw new ArgumentException("Card number was have a length of 16 characters.");
|
throw new ArgumentException("Card number must have a length of 16 characters.");
|
||||||
|
|
||||||
return new[]
|
return new[]
|
||||||
{
|
{
|
||||||
|
@ -21,5 +21,18 @@ namespace BankingBot.Helpers
|
||||||
cardNumber.Substring(12, 4)
|
cardNumber.Substring(12, 4)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string[] SplitSortCode(string sortcode)
|
||||||
|
{
|
||||||
|
if (sortcode.Length != 6)
|
||||||
|
throw new ArgumentException("Sortcode must have a length of 16 characters.");
|
||||||
|
|
||||||
|
return new[]
|
||||||
|
{
|
||||||
|
sortcode.Substring(0, 2),
|
||||||
|
sortcode.Substring(2, 2),
|
||||||
|
sortcode.Substring(4, 2)
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue