Purpose:
Checks whether the string in the first argument begins with the string in the second argument.
Parameter(s):
String
String
Boolean Specifies whether capitals/small letters are relevant. Default value: False
Return value:
Boolean
Examples:
StartsWith ("Hello World","hel") Result: True
StartsWith ("Hello World","rld") Result: False