ends_with
ends_with(Expr, Expr)
ends_with is true if both it's arguments are strings, and the second argument ends with the first argument.
e.g.
ends_with("foo", "metasyntacticfoo")
ends_with("hello", "hello world")
The first ends_with is true, and the second one is false