I'll hazard a guess that these are examples of an IN condition. SoMikeB wrote:I'm not quite sure what this is supposed to do
Code: Select all
If "test" In "this is a test"
; do something as "test" sequence is found IN "this is a test"
Endif
If "best" In "this is a test"
; would not do anything, no "best" IN "this is a test"
Endif
Dim myArray.b(10)
For i=0 to 10
myArray(i)=i
Next
If 129 In myArray()
; Nothing done, array does not contain 129 in any element
Endif
If 2 In myArray()
; Does something as array does contain 2 in an element
Endif