Class SepaAustrianIBAN
public static class SepaAustrianIBAN
- Inheritance
-
SepaAustrianIBAN
- Inherited Members
Methods
GetAcctNo(string)
Extract the domestic Austrian account number part from an IBAN.
public static string GetAcctNo(string sIBAN)
Parameters
sIBANstring
Returns
- string
The Austrian account number for a valid Austrian IBAN or
nullotherwise.
GetBankCode(string)
Extract the Austrian bank clearing code from an IBAN.
public static string GetBankCode(string sIBAN)
Parameters
sIBANstring
Returns
- string
The Austrian bank clearing code for a valid Austrian IBAN or
nullotherwise.
IsValid(string)
Checks whether the given IBAN looks like a valid Austrian IBAN number.
public static bool IsValid(string sIBAN)
Parameters
sIBANstringThe IBAN to check. If this is
null, then the result will befalse.
Returns
Remarks
This does not check whether the bank account really exists. It solely checks whether the IBAN specification is a syntactically correct Austrian IBAN specification.
- See Also