- s-ends-with? suffix s #!optional ignore-caseprocedure
Does s end with suffix?
If ignore-case is non-#f, the comparison is done without paying attention to case differences.
Alias: s-suffix?
(s-ends-with? ".md" "readme.md") ;; => #t (s-ends-with? ".MD" "readme.md") ;; => #f (s-ends-with? ".MD" "readme.md" #t) ;; => #t