endsWith

From RPTools Wiki
Revision as of 23:02, 9 February 2023 by Conversion script (talk | contribs) (Conversion script moved page EndsWith to endsWith: Converting page titles to lowercase)
Jump to navigation Jump to search

endsWith() Function

Introduced in version 1.3b49
Returns 1 if the string ends with a certain sub string.

Usage

[h: result = endsWith(str, substr)]

Examples

[r: endsWith("Test", "t")]
[r: endsWith("Test", "st")]
[r: endsWith("Test", "z")]

Returns

   1
   1
0