StringMatch Class |
Namespace: Sfs2X.Entities.Match
public class StringMatch : IMatcher
The StringMatch type exposes the following members.
Name | Description | |
---|---|---|
Symbol |
Returns the condition symbol of this matcher.
| |
Type |
Returns the type id of this matcher.
|
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.
|