endsWithIgnoreCaseString
Tests whether the string ends with another string.
Syntax
endsWithIgnoreCaseString(content, wildcard)
Returns
(boolean) yes/no
Parameters
- content (string)
- source
- wildcard (string)
- the compare string
Usage
echo(endsWithIgnoreCaseString("abcdef", "deF") ? "starts with AbC" : "doesnt start with AbC");