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.RegEx
Queries regular expression for country.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
IBAN | 11.1 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
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 paid license.
Created 26th February 2021, last changed 26th February 2021
