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

IBAN.RegEx

Queries regular expression for country.

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

Parameters

Parameter Description Example
Country Pass country code. "DE"

Result

Returns text or error.

Description

Queries regular expression for country.
You may use the regular expression to find IBAN within text.

Examples

Query RegEx for Germany:

MBS( "IBAN.RegEx"; "DE" )

Example result: ^DE[0-9]{2}([0-9]{08})([0-9]{10})$

Find a german IBAN in a text:

Let([
Input = "Hello DE29100100100987654321 World!";
R = MBS( "IBAN.RegEx"; "DE");
R = substitute(R; "^"; "");
R = substitute(R; "$"; "");

Found = MBS("RegEx.Extract"; input; R; "\\0"; 0 )
]; Found)

See also

Blog Entries

This function checks for a license.

Created 26th February 2021, last changed 26th February 2021


IBAN.IsValid - IKDeviceBrowserPanel.Close