StartsWith

Determines if the beginning of an input string matches the specified string.

SYNTAX
StartsWith(inString, value, ignoreCase) 
ARGUMENTS

inString The input string to check
value The string value to compare with the beginning of the inString value
ignoreCase TRUE = Case is ignored during the search

FALSE = Case is included in the search

RETURN TRUE = A string match is found

FALSE = No string match found

EXAMPLE
retPosition = StartsWith("ABCxyz","ABC",false)