Hello,
I have a question about operators in harbour, specifically <>. In a variable a="TEST" and in a variable b="TEST1", when testing a <> b, it returns true. How should I proceed? Thank you.
Hello,
I have a question about operators in harbour, specifically <>. In a variable a="TEST" and in a variable b="TEST1", when testing a <> b, it returns true. How should I proceed? Thank you.
Try with
! a == b
Antonio Linares wrote: Try withGracias Antonio!
! a == b
"Test" = "T" --> .T.
"Test" = "A" --> .F.
"Test" == "T" --> .F.
"Test" == "Test" --> .T.