EndsWith

Determines if the end of the input string matches the specified string.

SYNTAX
EndsWith(inString, value, ignoreCase) 
ARGUMENTS

inString The input string to check
value The string value to compare with the end of the inString value
ignoreCase

TRUE = Ignores case in the search

FALSE = Considers case in the search

RETURN

TRUE = A string match is found

FALSE = No string match is found

EXAMPLE
retPosition = EndsWith("ABCxyz","xyz",false)