HELP ISENDSTRING                                   A.Sloman March 1986

ISENDSTRING(<word or string>, <word or string>) -> <false or integer>

This takes two arguments, words or strings, and checks whether the first
is a final substring of the second. If it is then it returns the
location at which it starts in the second. Otherwise it returns false.

E.g.

    isendstring('.p', 'abc.p') =>
    ** 4

    isendstring('ing', "working") =>
    ** 5

    isendstring('ing', 'ng') =>
    ** <false>

See also
HELP *ISSTARTSTRING * SUBSTRING, * ISSUBSTRING, *ISSUBSTRING_LIM,
    *LOCCHAR, *STRMEMBER, and
HELP * STRINGS.
