Returns true if the specified sub string is found within the text. The search is done case-sensitive. If the sub string isn't found false is returned.
bool StrContains(string text; string subString)
| text | The string to search inside. | 
| subString | The sub string to search for. | 
Example
StrContains("Lorem ipsum";"ipsum")
Returns true.
