ascii()
chr()
ends_with()
index_of()
len()
lower()
ltrim()
mv_to_string()
number_to_string
replace()
rtrim()
starts_with()
string_to_number
substr()
trim()
upper()
Windowing Functions
coalesce
Previous Versions
Returns true if the string ends with the specified characters.
ends_with(string, suffix)
Returns true if ends with suffix, otherwise returns false. String comparison is case-sensitive. If any of the parameters are null, then the function returns null. If suffix is an empty string, then the function returns null.
1ends_with("FIT", "T") == true
2ends_with("FIT", "BIT") == false