endsWith: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "source>" to "syntaxhighlight>") |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: result = endsWith(str, substr)] | [h: result = endsWith(str, substr)] | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|examples= | |examples= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: endsWith("Test", "t")] | [r: endsWith("Test", "t")] | ||
[r: endsWith("Test", "st")] | [r: endsWith("Test", "st")] |
Latest revision as of 23:59, 14 March 2023
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 10