wiki/content/20201113115452-str_ends_with.md

397 B

date id title
2020-11-13 43cb053d-03b0-4845-a804-5e34da5d8db5 str~endswith~()

Description

Check if string ends with other string. Opposite of strstartswith(). See RFC1 for more details.

Syntax

str_ends_with('haystack', 'stack') // true

Footnotes