Rev 5903 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
8356 | schaersvoo | 1 | Alle vergelijkingen worden uitgevoerd met "strings" : <span class="tt wims_code_words">string1 rel string2</span>. |
2 | Vergelijkingen kunnen worden samengevoegd dmv <span class="tt wims_code_words">and</span> en |
||
3 | <span class="tt wims_code_words">or</span>. Gebruik haakjes voor meer complexe logische vergelijkingen. |
||
627 | schaersvoo | 4 | |
8356 | schaersvoo | 5 | :Beschikbare relaties |
6 | :Relatie,Conditie |
||
3469 | bpr | 7 | :== |
8356 | schaersvoo | 8 | string1 == string2 <br /> string1 == string2 |
9 | met <span class="tt wims_code_words">if</span>: waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> identiek zijn.<br />met <span class="tt wims_code_words">ifval</span>: waar als de numerieke evaluatie van <span class="tt wims_code_words">string1</span> en van <span class="tt wims_code_words">string2</span> gelijk zijn. |
||
3469 | bpr | 10 | :!= |
8356 | schaersvoo | 11 | string1 != string2 <br /> string1 <> string2 |
12 | met <span class="tt wims_code_words">if</span>: waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> NIET identiek zijn.<br />met <span class="tt wims_code_words">ifval</span>: waar als de if numerieke evaluatie van <span class="tt wims_code_words">string1</span> en van <span class="tt wims_code_words">string2</span> niet gelijk zijn. |
||
13 | :!= |
||
3469 | bpr | 14 | :< |
8356 | schaersvoo | 15 | string1 < string2 |
16 | waar als (de numerieke evaluatie van) <span class="tt wims_code_words">string1</span> kleiner is dan <span class="tt wims_code_words">string2</span>. |
||
3469 | bpr | 17 | :<= |
8356 | schaersvoo | 18 | string1 <= string2 |
19 | waar als (de numerieke evaluatie van) <span class="tt wims_code_words">string1</span> kleiner of gelijke is aan <span class="tt wims_code_words">string2</span>. |
||
3469 | bpr | 20 | :> |
8356 | schaersvoo | 21 | string1 > string2 |
22 | waar als (de numerieke evaluatie van) <span class="tt wims_code_words">string1</span> groter is dan <span class="tt wims_code_words">string2</span>. |
||
3469 | bpr | 23 | :>= |
8356 | schaersvoo | 24 | string1 >= string2 |
25 | waar als (de numerieke evaluatie van) <span class="tt wims_code_words">string1</span> groter of gelijk is aan <span class="tt wims_code_words">string2</span>. |
||
3469 | bpr | 26 | :isin |
8356 | schaersvoo | 27 | string1 isin string2 |
28 | waar als <span class="tt wims_code_words">string1</span> een substring van <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 29 | :notin |
8356 | schaersvoo | 30 | string1 notin string2 |
31 | waar als <span class="tt wims_code_words">string1</span> GEEN substring van <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 32 | :iswordof |
8356 | schaersvoo | 33 | string1 iswordof string2 |
34 | waar als <span class="tt wims_code_words">string1</span> een woord van <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 35 | :notwordof |
8356 | schaersvoo | 36 | string1 notwordof string2 |
37 | waar als <span class="tt wims_code_words">string1</span> GEEN woord van <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 38 | :isvarof |
8356 | schaersvoo | 39 | string1 isvarof string2 |
40 | waar als <span class="tt wims_code_words">string1</span> een (mathematische) variabele van de uitdrukking <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 41 | :notvarof |
8356 | schaersvoo | 42 | string1 notvarof string2 |
43 | waar als <span class="tt wims_code_words">string1</span> GEEN (mathematische) variabele van de uitdrukking <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 44 | :isvariableof |
8356 | schaersvoo | 45 | string1 isvariableof string2 |
46 | waar als <span class="tt wims_code_words">string1</span> een (mathematische) variabele van de uitdrukking <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 47 | :notvariableof |
8356 | schaersvoo | 48 | string1 notvariableof string2 |
49 | waar als <span class="tt wims_code_words">string1</span> GEEN (mathematische) variabele van de uitdrukking <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 50 | :isitemof |
8356 | schaersvoo | 51 | string1 isitemof string2 |
52 | waar als <span class="tt wims_code_words">string1</span> een item uit de lijst <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 53 | :notitemof |
8356 | schaersvoo | 54 | string1 notitemof string2 |
55 | waar als <span class="tt wims_code_words">string1</span> GEEN item uit de lijst <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 56 | :islineof |
8356 | schaersvoo | 57 | string1 islineof string2 |
58 | waar als <span class="tt wims_code_words">string1</span> een regel uit de lijst <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 59 | :notlineof |
8356 | schaersvoo | 60 | string1 notlineof string2 |
61 | waar als <span class="tt wims_code_words">string1</span> GEEN regel uit de lijst <span class="tt wims_code_words">string2</span> is. |
||
3469 | bpr | 62 | :issamecase |
8356 | schaersvoo | 63 | string1 issamecase string2 |
64 | waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> gelijk zijn in tekst en letter grootte (beide groot of klein) en onafhankelijke van het aantal spaties , |
||
3469 | bpr | 65 | :notsamecase |
8356 | schaersvoo | 66 | string1 notsamecase string2 |
67 | waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> NIET gelijk zijn in tekst en letter grootte en onafhankelijk van het aantal spaties. |
||
3469 | bpr | 68 | :issametext |
8356 | schaersvoo | 69 | string1 issametext string2 |
70 | waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> gelijk zijn in tekst onafhankelijk van letter grootte spaties en accenten. |
||
3469 | bpr | 71 | :notsametext |
8356 | schaersvoo | 72 | string1 notsametext string2 |
73 | waar als <span class="tt wims_code_words">string1</span> en <span class="tt wims_code_words">string2</span> NIET gelijk zijn in tekst onafhankelijk van letter grootte spaties en accenten. |
||
3263 | bpr | 74 |