Determines if a string ends with characters given by another string.
This function does not generate a change.
str.ends_with(search_string)
Argument | Type | Description |
---|---|---|
search_string | str (required) | The characters to be searched for at the end of this string. |
Returns true
if the given characters are found at the end of the string and otherwise false
.
This code shows an example using ends_with():
'the answer to life the universe and everything'.ends_with('everything');
Return value in JSON format
true