Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 11.4   11.5   12.0   12.1   12.2   12.3   12.4   12.5   13.0   13.1    Statistic    FMM    Blog  

IBAN.Example

Queries example IBAN for country.

Component Version macOS Windows Linux Server iOS SDK
IBAN 11.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "IBAN.Example"; Country )   More

Parameters

Parameter Description Example
Country Pass country code. "DE"

Result

Returns text or error.

Description

Queries example IBAN for country.

Examples

Query examples for each country:

While(
[
    names = "";
    // query list of countries
    list = MBS( "IBAN.Countries" );
    count = ValueCount(list);
    index = 1
] ;
    index ≤ count ;
[
    Country = GetValue(list; index);
    // query example for each country
    example = MBS( "IBAN.Example"; Country );
    names = names & Country & " -> " & example & ¶;
    index = index + 1
] ;
// return all the names
names )

Example result:
AD -> AD1200012030200359100100
AE -> AE070331234567890123456
AL -> AL47212110090000000235698741
...

See also

Blog Entries

This function checks for a paid license.

Created 26th February 2021, last changed 14th June 2022


IBAN.Countries - IBAN.Format

💬 Ask a question or report a problem


Start Chat