X³ DMI Operators Documentation

Here is a full list of comparison, mathematical, and special operators used in X³.

Comparison Operators

OperatorDescriptionExample
==Equal toif a == b
!=Not equal toif a != b
>Greater thanif a > b
<Less thanif a < b
>=Greater than or equalif a >= b
<=Less than or equalif a <= b
!==Strict inequality (not identical)if a !== b
isChecks if two variables reference the same objectif a is b
is notChecks if two variables reference different objectsif a is not b
|+|Similarity Percentageif "hello" |+| "helo" > 80

String Operators

OperatorDescriptionExample
startswithChecks if a string starts with anotherif text startswith "Hello"
endswithChecks if a string ends with anotherif text endswith "World"
containsChecks if a string contains anotherif text contains "lo"
!containsChecks if a string does not contain anotherif text !contains "xyz"
equals_ignore_caseCase-insensitive equalityif text equals_ignore_case "HELLO"

Length-Based Operators

OperatorDescriptionExample
len==Checks if length of a value equals a numberif text len== 5
len!=Checks if length of a value is not a numberif text len!= 5
len>Checks if length of a value is greater than a numberif text len> 5
len<Checks if length of a value is less than a numberif text len< 5

Special Operators

OperatorDescriptionExample
|+|Checks the similarity percentage between two strings.if var1 |+| var2