Ends with

The ends with keyword checks if a text ends with another text.

This function is SQL compatible. For more information about SQL compatibility, see our documentation.

Returns a Yes/No value

This check is not case-sensitive and ignores diacritics (accents).

text_a ends withtext_b

"Text contains subtext" ends with "contains" => false

"Text contains subtext" ends with "tëXT" => true

"Text contains subtext" ends with unknowntext => true

unknowntext ends with unknowntext => true

unknowntext ends with "some text" => false

Last updated