Navigation :
endswith
endswith(source: text, pattern: text) 🡒 boolean, const pure function
Returns true
if the source ends with an occurrence of the pattern.
source = "Hello World!"
show summary "" a1c2 with
endswith(source, "World") as "Ends with World"
endswith(source, "World!") as "Ends with World!"
See also