Page 1 of 1

AprQ2 1.19b "if"

Posted: Thu Mar 16, 2006 8:32 pm
by Cnnlngs
can someone give some guidelines according to the new "if" command?
i'm not a programmer so i don't understand the operators

==, != or <>, <, <=, >, >=, isin, !isin, isini, !isini, eq, ne

O_o

Posted: Fri Mar 17, 2006 1:41 am
by Janner
I only understand ==, != or <>, <, <=, >, >=.
== means must be exactly that
!= means must be not that
<> means either greater or smaller than (opposite of ==)
< means smaller than
<= means smaller than or exact
> means greater than
>= means greater than or exact

About eq: it could mean equal to (like ==)
and the ! before those mean not.

Posted: Fri Mar 17, 2006 2:36 am
by Maniac-

Code: Select all

A == B    - is values/strings same
A != B    - is values/strings different
<> same as '!='
A <  B    - is A value smaller than B
A <= B    - is A value smaller or same as B
A >  B    - is A value larger than B
A >= b    - is A value larger or same as B
A isin b  - does B string contain string A
A !isin b - does B string not contain string A
isini/!isini - case-insensitive version of isin/!isin
eq same as '==' on strings but case-insensitive
ne same as '!=' on strings but case-insensitive

Posted: Fri Mar 17, 2006 2:52 am
by ogathy
if..

Posted: Fri Mar 17, 2006 3:05 pm
by Cnnlngs
great! thx :)

Posted: Fri Mar 17, 2006 3:42 pm
by Da^JuaN
asif 8)

Posted: Fri Mar 17, 2006 5:54 pm
by W1lco
Looks like first grade maths at highschool for me O_o O_o

Posted: Sat Mar 18, 2006 1:56 am
by Mutu
hehe :)

Posted: Sat Mar 18, 2006 6:49 am
by Sabotage
W1lco wrote:Looks like first grade maths at highschool for me O_o O_o
That must have been bad then

Posted: Wed May 17, 2006 4:23 pm
by Gen
where can I get these release?

Posted: Wed May 17, 2006 4:30 pm
by Caracol
Here you go, Gencito.
http://maniac.aq2world.com/apr/

Posted: Wed May 17, 2006 4:40 pm
by Gen
thnx :hop:

Posted: Wed May 17, 2006 10:45 pm
by Nozaki
Da^JuaN wrote:asif 8)
hohoho!! made my day ^^

Posted: Thu May 18, 2006 1:46 am
by BeAViS
Image