Contains_Exactly

Checks whether the source string contains a search string. The check is case-sensitive.

SYNTAX
Contains_Exactly(sourceString, searchString) 
ARGUMENTS

sourceString The string to search through
searchString The string to search for

RETURN TRUE = The source string contains the search string.

FALSE = The source string does not contain the search string.

EXAMPLE
source_string = "CCM software"

search_string = "ware"

ok=Contains_Exactly(source_string ,search_string)