我创建了一个函数来检查我的第一个字符串是否以第二个字符串结尾。
在 Java 中,我们有现成的方法来检查这一点,但在 Clojure 中我找不到这样的方法,所以我编写了自定义函数,如下所示:
(defn endWithFun [arg1 arg2]
(= (subs arg1 (- (count arg1) (count arg2)) (count arg1)) arg2))
输出:
> (endWithFun "swapnil" "nil")
true
> (endWithFun "swapnil" "nilu")
false
这按预期工作。
我想知道,有没有类似的选择?同样在我的情况下,我区分大小写。我也想忽略区分大小写。