Subversion Repositories wimsdev

Rev

Rev 8354 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8354 Rev 17348
Line 4... Line 4...
4
be used to build complex comparison logics.
4
be used to build complex comparison logics.
5
 
5
 
6
:Valid relations
6
:Valid relations
7
:Relation,Condition
7
:Relation,Condition
8
:==
8
:==
9
string1 == string2 <br /> string1 == string2
9
string1 == string2 <br> string1 == string2
10
with <span class="tt wims_code_words">if</span>: true if <span class="tt wims_code_words">string1</span> and <span class="tt wims_code_words">string2</span> are identical.<br /> with <span class="tt wims_code_words">ifval</span>: true if the numerical evaluations of <span class="tt wims_code_words">string1</span> and of <span class="tt wims_code_words">string2</span> are equal.
10
with <span class="tt wims_code_words">if</span>: true if <span class="tt wims_code_words">string1</span> and <span class="tt wims_code_words">string2</span> are identical.<br> with <span class="tt wims_code_words">ifval</span>: true if the numerical evaluations of <span class="tt wims_code_words">string1</span> and of <span class="tt wims_code_words">string2</span> are equal.
11
:!=
11
:!=
12
string1 != string2 <br /> string1 &lt;&gt; string2
12
string1 != string2 <br> string1 &lt;&gt; string2
13
with <span class="tt wims_code_words">if</span>: true if <span class="tt wims_code_words">string1</span> and <span class="tt wims_code_words">string2</span> are NOT identical.<br /> with <span class="tt wims_code_words">ifval</span>: true if the numerical evaluations of <span class="tt wims_code_words">string1</span> and of <span class="tt wims_code_words">string2</span> are not equal.
13
with <span class="tt wims_code_words">if</span>: true if <span class="tt wims_code_words">string1</span> and <span class="tt wims_code_words">string2</span> are NOT identical.<br> with <span class="tt wims_code_words">ifval</span>: true if the numerical evaluations of <span class="tt wims_code_words">string1</span> and of <span class="tt wims_code_words">string2</span> are not equal.
14
:!=
14
:!=
15
:<
15
:<
16
string1 < string2
16
string1 < string2
17
true if (the numerical evaluation of) <span class="tt wims_code_words">string1</span> is < <span class="tt wims_code_words">string2</span>.
17
true if (the numerical evaluation of) <span class="tt wims_code_words">string1</span> is < <span class="tt wims_code_words">string2</span>.
18
:<=
18
:<=