StringMatch Fields |
The StringMatch type exposes the following members.
Name | Description | |
---|---|---|
CONTAINS |
An instance of StringMatch representing the following condition: string1.indexOf(string2) != -1.
| |
ENDS_WITH |
An instance of StringMatch representing the following condition: string1 ends with characters contained in string2.
| |
EQUALS |
An instance of StringMatch representing the following condition: string1 == string2.
| |
NOT_EQUALS |
An instance of StringMatch representing the following condition: string1 != string2.
| |
STARTS_WITH |
An instance of StringMatch representing the following condition: string1 starts with characters contained in string2.
|