Subversion Repositories wimsdev

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
196 bpr 1
 
152 bpr 2
!readproc tabletheme
196 bpr 3
 
20 reyssat 4
<p>All comparisons are made on strings: <tt>string1 rel string2</tt>.
5
Comparisons can be joined using <tt>and</tt> and <tt>or</tt>. Parentheses may
6
be used to build complex comparison logics.<p>
7
Valid relations <tt>rel</tt>:
8
  <p>$table_header
1982 bpr 9
   $table_tr<th>relation</th><th>condition</th>
20 reyssat 10
   $table_tr<td align=center><tt> = </tt> or <tt>==</tt><td>true if <tt> string1
11
       </tt> and <tt> string2 </tt> are identical.
12
   $table_tr<td align=center><tt> != </tt> or <tt>&lt;&gt;</tt>
152 bpr 13
    <td>true if <tt> string1
20 reyssat 14
       </tt> and <tt> string2 </tt> are NOT identical.
15
   $table_tr<td align=center><tt> < </tt><td>true if (the numerical evaluation of)
16
       <tt> string1 </tt> is < <tt> string2 </tt>.
17
   $table_tr<td align=center><tt> <= </tt><td>true if (the numerical evaluation of)
18
       <tt> string1 </tt> is $m_le <tt> string2 </tt>.
19
   $table_tr<td align=center><tt> > </tt><td>true if (the numerical evaluation of)
20
       <tt> string1 </tt> is > <tt> string2 </tt>.
21
   $table_tr<td align=center><tt> >= </tt><td>true if (the numerical evaluation of)
22
       <tt> string1 </tt> is $m_ge <tt> string2 </tt>.
23
   $table_tr<td align=center><tt> isin </tt><td>true if <tt> string1
24
       </tt> is a substring of <tt> string2 </tt>.
25
   $table_tr<td align=center><tt> notin </tt><td>true if <tt> string1
26
       </tt> is NOT a substring of <tt> string2 </tt>.
27
   $table_tr<td align=center><tt> iswordof </tt><td>true if <tt> string1
28
       </tt> is a word of <tt> string2 </tt>.
29
   $table_tr<td align=center><tt> notwordof </tt><td>true if <tt> string1
30
       </tt> is NOT a word of <tt> string2 </tt>.
31
   $table_tr<td align=center><tt> isvarof </tt><td>true if <tt> string1
32
       </tt> is a (mathematical) variable of the expression 
33
       <tt> string2 </tt>.
34
   $table_tr<td align=center><tt> notvarof </tt><td>true if <tt> string1
35
       </tt> is NOT a (mathematical) variable of the expression
36
       <tt> string2 </tt>.
37
   $table_tr<td align=center><tt> isvariableof </tt><td>true if <tt> string1
38
       </tt> is a (mathematical) variable of the expression 
39
       <tt> string2 </tt>.
40
   $table_tr<td align=center><tt> notvariableof </tt><td>true if <tt> string1
41
       </tt> is NOT a (mathematical) variable of the expression
42
       <tt> string2 </tt>.
43
   $table_tr<td align=center><tt> isitemof </tt><td>true if <tt> string1
44
       </tt> is an item of the list <tt> string2 </tt>.
45
   $table_tr<td align=center><tt> notitemof </tt><td>true if <tt> string1
46
       </tt> is NOT an item of the list <tt> string2 </tt>.
47
   $table_tr<td align=center><tt> islineof </tt><td>true if <tt> string1
48
       </tt> is a line of the list <tt> string2 </tt>.
2741 bpr 49
   $table_tr<td align=center><tt> notlineof </tt><td>true if <tt> string1
20 reyssat 50
       </tt> is NOT a line of the list <tt> string2 </tt>.
51
   $table_tr<td align=center><tt> issamecase </tt><td>true if <tt> string1
52
       </tt> and <tt> string2 </tt> are the same text by a comparison
53
       insensitive to multiple spaces but case-sensitive.
54
   $table_tr<td align=center><tt> notsamecase </tt><td>true if <tt> string1
55
       </tt> and <tt> string2 </tt> are NOT the same text by a comparison
56
       insensitive to multiple spaces but case-sensitive.
57
   $table_tr<td align=center><tt> issametext </tt><td>true if <tt> string1
58
       </tt> and <tt> string2 </tt> are the same text by a comparison
59
       insensitive to cases, multiple spaces and accented letters.
60
   $table_tr<td align=center><tt> notsametext </tt><td>true if <tt> string1
61
       </tt> and <tt> string2 </tt> are NOT the same text by a comparison
62
       insensitive to cases, multiple spaces and accented letters.
63
 
64
  $table_end<p>