Tests whether the specified string ends with the specified suffix string.
true when s2 is a suffix for the string s1. Meaning, the characters at the end of s1 are identical to s2; otherwise, false.
This function performs a case-sensitive word search using the invariant culture.
string::ends-with('testing string', 'string') ==> true
string::ends-with('testing string', '') ==> true
string::ends-with('testing string', 'bring') ==> false
string::ends-with('string', 'testing string') ==> false
StringFunctions Class | NAnt.Core.Functions Namespace