Ends(Text u, Text v)
Returns true if the text u ends with the text v, otherwise returns false.
Parameters
- u
- The text value to test.
- v
- The text value to find.
Returns
Boolean
Examples
Ends("test", "st")returns true.Ends("test", "te")returns false.
Returns true if the text u ends with the text v, otherwise returns false.
Boolean
Ends("test", "st") returns true.Ends("test", "te") returns false.