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:
10.1
10.2
10.3
10.4
10.5
11.0
11.1
11.2
11.3
11.4
Statistic
FMM
Blog
Queries regular expression for country.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
IBAN | 11.1 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example |
---|---|---|
Country | Pass country code. | "DE" |
Returns text or error.
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)
Created 26th February 2021, last changed 26th February 2021
IBAN.IsValid - IKDeviceBrowserPanel.Close
Feedback: Report problem or ask question.