String.EndsWith - boxgaming/qbjs GitHub Wiki
Determines whether a string ends with the characters of this string, returning true (-1) or false (0) as appropriate.
Syntax
result = String.EndsWith (s$, searchStr$)
Parameters
- The s$ parameter contains the string to search.
- The searchString$ parameter contains the string to search for within s$.
See Also
String.StartsWith
String.Includes
Javascript - String.endsWith()