Description Usage Arguments Details Value References See Also Examples
Return TRUE
if the string str
ends with the specified
suffix
, otherwise return FALSE
.
1 |
str |
A character vector. |
suffix |
A character vector. |
start |
A numeric vector. |
end |
A numeric vector. |
With optional start
, test beginning at that position.
With optional end
, stop comparing at that position.
A logical vector.
https://docs.python.org/3/library/stdtypes.html#str.endswith
1 2 3 | pystr_endswith("selfie.jpg", ".jpg")
pystr_endswith("selfie.jpg", ".png")
pystr_endswith("hello world", "ello", 1, 5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.