Onetastic Macro Documentation >
>
>
String_EndsWith String_EndsWith
Returns true if the first string ends with the second string, false otherwise.
Syntax
Bool String_EndsWith(
String first,
String second,
Bool ignorecase)
Parameters
- String first
- First string to compare.
- String second
- Second string to compare.
- Bool ignorecase
- Ignores the case of the strings if set to true.
Examples
String_EndsWith("The quick brown fox", "Fox", false)
String_EndsWith("The quick brown fox", "Fox", true)
|