IUserAccessiablestringContains Method (String, String) |
Determines whether or not string inPart contained in string inFull
Namespace: SurveyToGo.UserLogic.InterfacesAssembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax bool stringContains(
string inFull,
string inPart
)
Parameters
- inFull
- Type: SystemString
string to look inPart string in - inPart
- Type: SystemString
string to find in string inFull
Return Value
Type:
Boolean'true' if inPart contained in inFull, or 'false' otherwise
Examples
stringContains("Good Morning", "nin") will return true.
See Also