ENDS_WITH

Checks whether a string ends with a specified suffix.

Analyze Syntax

func.ends_with(<str>, <suffix>)

Analyze Examples

func.ends_with('hello world', 'world')

┌───┐
 1  
└───┘

SQL Syntax

ENDS_WITH(<str>, <suffix>)

SQL Examples

SELECT ENDS_WITH('hello world', 'world');

┌───┐
 1  
└───┘