NAME
StringContains — Check whether the target string contains the search value.
SYNOPSIS
StringContains
TargetString
SearchValue
DESCRIPTION
Return Value
1
Target string does contain the value.
0
Target string does not contain the value.
Arguments
TargetString
String to search in.
SearchValue
Value to search for.
For information regarding exceptions / errors, see
here
.
EXAMPLES
%
StringContains "one two three" two
1
% StringContains "one two three" four
0
SEE ALSO
EndsWith
,
StartsWith
,
string
KEYWORDS
check
,
string
,
validation
,
verification