Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

IBAN.Countries

Queries list of country codes.

Component Version macOS Windows Linux Server iOS SDK
IBAN 11.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "IBAN.Countries" )

Parameters

none

Result

Returns list or error.

Description

Queries list of country codes.
The plugin includes a list of over 100 country codes.

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 )

See also

Blog Entries

This function checks for a license.

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


IBAN.Compact - IBAN.Example