StringMatch Class Reference
| Inherits from | NSObject | 
| Conforms to | IMatcher | 
| Declared in | StringMatch.h StringMatch.m | 
Tasks
Other Methods
- 
	
		symbolGet the condition symbol of this matcher property
- 
	
		+ stringMatchEqualsChecks that Str1 == Str2 
- 
	
		+ stringMatchNotEqualsChecks that Str1 != Str2 
- 
	
		+ stringMatchContainsChecks that Str1.indexOf(Str2) != -1 
- 
	
		+ stringMatchStartsWithChecks that Str1 starts with characters contained in Str2 
- 
	
		+ stringMatchEndsWithChecks that Str1 end with characters contained in Str2 
Other Methods
- 
	
		– typeGet the type of this matcher 
Class Methods
stringMatchContains
Checks that Str1.indexOf(Str2) != -1
+ (StringMatch *)stringMatchContainsDiscussion
Checks that Str1.indexOf(Str2) != -1
Declared In
StringMatch.hstringMatchEndsWith
Checks that Str1 end with characters contained in Str2
+ (StringMatch *)stringMatchEndsWithDiscussion
Checks that Str1 end with characters contained in Str2
Declared In
StringMatch.hstringMatchEquals
Checks that Str1 == Str2
+ (StringMatch *)stringMatchEqualsDiscussion
Checks that Str1 == Str2
Declared In
StringMatch.h