True if s ends with substr.
(use 'clojure.string) (ends-with? "Minsun" "sun") ;;=> true (ends-with? "Minsun" "suns") ;;=> false (ends-with? "Minsun" "un") ;;=> true
True if s starts with substr.
True if s includes substr.
ends-with?