Clojure - 字符串反转

reverse 反转字符串中的字符。

语法

语法如下。

(reverse str)

参数 − 'str'是需要反转的字符串。

返回值 − 反转的字符串。

示例

以下是 Clojure 中的反向示例。

(ns clojure.examples.hello
   (:gen-class))
(defn hello-world []
   (println (reverse "Hello World")))
(hello-world)

输出

上面的程序产生以下输出。

(d l r o W   o l l e H)                                                        

❮ clojure_strings.html