!= Not Equals

Symbol

Symbol

Preferred

5.0

!= checks that the left parameter is not equal to the right parameter. It returns True if the parameters are not equal or False otherwise.

Note: If the parameter on the right hand side of the symbol is a negative literal it should be surrounded by parentheses. For example, (4 != (-1)).

[If: Left_Parameter != Right_Parameter]
  ...
[/If]

<?LassoScript
  If: Left_Parameter != Right_Parameter;
  ...
  /If;
?>

!= Not Equals