Summary
If one string is included at the end of another.
Description
Determines whether a string ends with the characters of a specified string.
Route
No Northbound API Available
Roles
Parameters
DetailsExampleSchema
Name | Type | Required | Description |
---|---|---|---|
str | string | yes | The string to search |
searchString | string | yes | The characters to be searched for at the end of the string to search |
length | number | no | The length of the string to use; if omitted, default value is length of string |
Return
DetailsExampleSchema
Name | Type | Description |
---|---|---|
result | boolean | True if the given characters are found at the end of the string, false otherwise |