The endsWith() function takes a string and a searchString as arguments. It returns True if searchString is found at the end of the string. Otherwise, it returns False.
(OR)
| Parameter | Description | Data type |
|---|---|---|
| <variable> | Variable which will contain the boolean value, true or false. | BOOLEAN |
| <string> | The string which may end with the searchString. | TEXT |
| <searchString> | The searchString with which the main string may end. | TEXT |