Functions - Dataview#endswithstring-suffix

endswith(string, suffix)

Checks if a string ends with the given suffix.

endswith("yes", "es") = true
endswith("path/to/something", "something") = true
endswith("yes", "ye") = false

Printed 2026-06-28.

(echo:: @ )