Rascal Language ReferenceExpressionsValuesStringString NotEqualOn this pageString NotEqualrascal-0.40.17SynopsisNot equal operator on string values.SyntaxExp₁ != Exp₂TypesExp₁Exp₂Exp₁ != Exp₂strstrboolDescriptionYields true if both arguments are not identical and false otherwise.Examplesrascal>"abc" != "defghi";bool: truerascal>"abc" != "abc";bool: false