Rev 3282 | Rev 4091 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3282 | Rev 3469 | ||
---|---|---|---|
Line 4... | Line 4... | ||
4 | 4 | ||
5 | :Valid relations |
5 | :Valid relations |
6 | :Relation,Condition |
6 | :Relation,Condition |
- | 7 | :== |
|
7 |
|
8 | string1 == string2 string1 == string2 |
8 | true if <tt> string1</tt> and <tt>string2</tt> are identical. |
9 | true if <tt> string1</tt> and <tt>string2</tt> are identical. |
- | 10 | :!= |
|
9 |
|
11 | string1 != string2 string1 <> string2 |
10 | true if <tt> string1</tt> and <tt>string2</tt> are NOT identical. |
12 | true if <tt> string1</tt> and <tt>string2</tt> are NOT identical. |
11 | :< |
13 | :< |
- | 14 | string1 < string2 |
|
12 | true if (the numerical evaluation of) <tt>string1</tt> is < <tt>string2</tt>. |
15 | true if (the numerical evaluation of) <tt>string1</tt> is < <tt>string2</tt>. |
13 | :<= |
16 | :<= |
- | 17 | string1 <= string2 |
|
14 | true if (the numerical evaluation of) <tt>string1</tt> is $m_le <tt>string2</tt>. |
18 | true if (the numerical evaluation of) <tt>string1</tt> is $m_le <tt>string2</tt>. |
15 | :> |
19 | :> |
- | 20 | string1 > string2 |
|
16 | true if (the numerical evaluation of) <tt>string1</tt> is > <tt>string2</tt>. |
21 | true if (the numerical evaluation of) <tt>string1</tt> is > <tt>string2</tt>. |
17 | :>= |
22 | :>= |
- | 23 | string1 >= string2 |
|
18 | true if (the numerical evaluation of) <tt>string1</tt> is $m_ge <tt>string2</tt>. |
24 | true if (the numerical evaluation of) <tt>string1</tt> is $m_ge <tt>string2</tt>. |
19 | :isin |
25 | :isin |
- | 26 | string1 isin string2 |
|
20 | true if <tt>string1</tt> is a substring of <tt>string2</tt>. |
27 | true if <tt>string1</tt> is a substring of <tt>string2</tt>. |
21 | :notin |
28 | :notin |
- | 29 | string1 notin string2 |
|
22 | true if <tt>string1</tt> is NOT a substring of <tt>string2</tt>. |
30 | true if <tt>string1</tt> is NOT a substring of <tt>string2</tt>. |
23 | :iswordof |
31 | :iswordof |
- | 32 | string1 iswordof string2 |
|
24 | true if <tt>string1</tt> is a word of <tt>string2</tt>. |
33 | true if <tt>string1</tt> is a word of <tt>string2</tt>. |
25 | :notwordof |
34 | :notwordof |
- | 35 | string1 notwordof string2 |
|
26 | true if <tt>string1</tt> is NOT a word of <tt>string2</tt>. |
36 | true if <tt>string1</tt> is NOT a word of <tt>string2</tt>. |
27 | :isvarof |
37 | :isvarof |
- | 38 | string1 isvarof string2 |
|
28 | true if <tt>string1</tt> is a (mathematical) variable of the expression <tt>string2</tt>. |
39 | true if <tt>string1</tt> is a (mathematical) variable of the expression <tt>string2</tt>. |
29 | :notvarof |
40 | :notvarof |
- | 41 | string1 notvarof string2 |
|
30 | true if <tt>string1</tt> is NOT a (mathematical) variable of the expression <tt>string2</tt>. |
42 | true if <tt>string1</tt> is NOT a (mathematical) variable of the expression <tt>string2</tt>. |
31 | :isvariableof |
43 | :isvariableof |
- | 44 | string1 isvariableof string2 |
|
32 | true if <tt> string1</tt> is a (mathematical) variable of the expression <tt>string2</tt>. |
45 | true if <tt> string1</tt> is a (mathematical) variable of the expression <tt>string2</tt>. |
33 | :notvariableof |
46 | :notvariableof |
- | 47 | string1 notvariableof string2 |
|
34 | true if <tt> string1</tt> is NOT a (mathematical) variable of the expression <tt>string2</tt>. |
48 | true if <tt> string1</tt> is NOT a (mathematical) variable of the expression <tt>string2</tt>. |
35 | :isitemof |
49 | :isitemof |
- | 50 | string1 isitemof string2 |
|
36 | true if <tt> string1</tt> is an item of the list <tt>string2</tt>. |
51 | true if <tt> string1</tt> is an item of the list <tt>string2</tt>. |
37 | :notitemof |
52 | :notitemof |
- | 53 | string1 notitemof string2 |
|
38 | true if <tt> string1</tt> is NOT an item of the list <tt>string2</tt>. |
54 | true if <tt> string1</tt> is NOT an item of the list <tt>string2</tt>. |
39 | :islineof |
55 | :islineof |
- | 56 | string1 islineof string2 |
|
40 | true if <tt> string1</tt> is a line of the list <tt>string2</tt>. |
57 | true if <tt> string1</tt> is a line of the list <tt>string2</tt>. |
41 | :notlineof |
58 | :notlineof |
- | 59 | string1 notlineof string2 |
|
42 | true if <tt> string1</tt> is NOT a line of the list <tt>string2</tt>. |
60 | true if <tt> string1</tt> is NOT a line of the list <tt>string2</tt>. |
43 | :issamecase |
61 | :issamecase |
- | 62 | string1 issamecase string2 |
|
44 | true if <tt> string1</tt> and <tt>string2</tt> are the same text by a comparison insensitive to multiple spaces but case-sensitive. |
63 | true if <tt> string1</tt> and <tt>string2</tt> are the same text by a comparison insensitive to multiple spaces but case-sensitive. |
45 | :notsamecase |
64 | :notsamecase |
- | 65 | string1 notsamecase string2 |
|
46 | true if <tt> string1</tt> and <tt>string2</tt> are NOT the same text by a comparison nsensitive to multiple spaces but case-sensitive. |
66 | true if <tt> string1</tt> and <tt>string2</tt> are NOT the same text by a comparison nsensitive to multiple spaces but case-sensitive. |
47 | :issametext |
67 | :issametext |
- | 68 | string1 issametext string2 |
|
48 | true if <tt> string1</tt> and <tt>string2</tt> are the same text by a comparison insensitive to cases, multiple spaces and accented letters. |
69 | true if <tt> string1</tt> and <tt>string2</tt> are the same text by a comparison insensitive to cases, multiple spaces and accented letters. |
49 | :notsametext |
70 | :notsametext |
- | 71 | string1 notsametext string2 |
|
50 | true if <tt> string1</tt> and <tt>string2</tt> are NOT the same text by a comparison insensitive to cases, multiple spaces and accented letters. |
72 | true if <tt> string1</tt> and <tt>string2</tt> are NOT the same text by a comparison insensitive to cases, multiple spaces and accented letters. |
- | 73 |