Greetings,
How do I test for in-equality, "A$ <> B$" & "A <> B"...???
There must be a work-around but i don't know it.
Any help is much appreciated.
Robert
.
How do I test for in-equality, "A$ <> B$" & "A <> B"...???
How do I test for in-equality, "A$ <> B$" & "A <> B"...???
Data is not information, information is not knowledge, knowledge is not understanding, understanding is not wisdom.
Clifford Stoll
Clifford Stoll
-
- Posts: 37
- Joined: Thu Nov 01, 2012 10:57 am
- Location: Johannesburg, South Africa
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Good morning Robert
Please give an example what you want to test for inequality, and for what purpose. Maybe, then we can explore possible options.
Best regards
Andries
Please give an example what you want to test for inequality, and for what purpose. Maybe, then we can explore possible options.
Best regards
Andries
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Good Evening your time Andries,
OK, i gather this is not as simple as i thought.
How i was wanting to use it is:
IF x$ <> z$ THEN...
&
IF X <> Z THEN...
Is this what you meant Andries?
Enjoy your evening...
Robert
.
OK, i gather this is not as simple as i thought.
How i was wanting to use it is:
IF x$ <> z$ THEN...
&
IF X <> Z THEN...
Is this what you meant Andries?
Enjoy your evening...
Robert
.
Data is not information, information is not knowledge, knowledge is not understanding, understanding is not wisdom.
Clifford Stoll
Clifford Stoll
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Hi Robert
Do you want to test if both items are unequal?
works as advertised.
Daniel
Do you want to test if both items are unequal?
Code: Select all
x$="abc"
y$="ac"
x=2
y=3
IF x$<>y$ AND x<>y THEN
PRINT "both pairs not equal"
ELSE
PRINT "one pair is equal"
ENDIF
END
Daniel
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Thanks Daniel,
Nowhere in the manual does it state that "<>" is valid, nor does it show any examples anywhere.
The closest it comes to is in page 18 of the manual where it says:
Thanks again for spelling it out Daniel.
Enjoy!
Robert
.
Nowhere in the manual does it state that "<>" is valid, nor does it show any examples anywhere.
The closest it comes to is in page 18 of the manual where it says:
It should also say:Valid expressions contain one of the five relational operators =, <, >, <= and >= and variables or constants.
You can see why i questioned it...Use "<" and ">" together to test for inequality, example: IF abc$ <> xyz$ THEN...
Thanks again for spelling it out Daniel.
Enjoy!
Robert
.
Data is not information, information is not knowledge, knowledge is not understanding, understanding is not wisdom.
Clifford Stoll
Clifford Stoll
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Hi
Point taken. I will update the manual to reflect the fact that there are six relational operators.
Daniel
Point taken. I will update the manual to reflect the fact that there are six relational operators.
Daniel
-
- Posts: 37
- Joined: Thu Nov 01, 2012 10:57 am
- Location: Johannesburg, South Africa
Re: How do I test for in-equality, "A$ <> B$" & "A <> B"...?
Apologies Robert! I did not fully understand your question the first time. I assumed that you new how to use the <> operator in Control Basic.
Thanks for pointing out the omission in the manual.
Best regards
Andries
Thanks for pointing out the omission in the manual.
Best regards
Andries