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:
12.1
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
Statistic
FMM
Blog
Finds unequal items in both lists.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
List | 4.2 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
Parameter | Description | Example | Flags |
---|---|---|---|
List1 | The first list. | "Hello" ¶ "World" | |
List2 | The second list. | "Hello" ¶ "Friends" | |
NoReturnEnding | Pass 1 to have no extra newline character on the end of the returned list. Default is 0 to include one to easily concat lists. | 1 | Optional |
NotFromSecondList | Pass 1 to only returns items from first list not present in second list. Default is 0 to get items from both lists. |
0 | Optional |
Returns new list.
Find non equal entries in both lists:
MBS( "List.FindUnequals"; "Hello¶World"; "Hello¶Friends"; 1 )
Example result:
"World
Friends"
Find items in first list which are not in second list:
MBS( "List.FindUnequals"; "Hello¶World"; "Hello¶Friends"; 1; 1 )
Example result: "World"
Created 18th August 2014, last changed 11st August 2021