TEXT != TEXT Operator
The TEXT != TEXT operator returns a value of true if the two text values you specify are not the same.
The TEXT != TEXT operator works with any two text values including text variables, text expressions, and functions returning text values.
Operator | Description | After you drag and drop the operator into the script tab: | Expression returns: |
!= | ⟦Text⟧ != ⟦Text⟧ | Replace both ⟦TEXT⟧ placeholders with the variables you want to compare in your script. You can drop a variable (from the Component tab) or another model on the placeholder, or you can replace the placeholder with a text value (within quotes). | A TRUE/FALSE value. |
Examples
The following script does something if Surname is not equal to Maiden Name.
IF Surname != Maiden Name
//do something
END IF