NAME
EndsWith — Check whether the target string ends with the value.
SYNOPSIS
EndsWith StringValue SearchValue
DESCRIPTION
Return Value
1 String ends with the value.
0 String does not end with the value.
Arguments
StringValueString value to check in.
SearchValueValue to check for.
More Info
Note that arguments of the form XxxVariable can take either a normal value or the name of a variable to read/write, prefixed by @. See About Using @ for details.

For information regarding exceptions / errors, see here.
EXAMPLES
% EndsWith 1-2-3 3
1
% EndsWith 4-5-6 7
0
SEE ALSO
StartsWith, StringContains, string
KEYWORDS
check, string, validation, verification