Clojure - 反转字符串



反转字符串中的字符。

语法

以下是语法。

(reverse str)

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

返回值 - 反转后的字符串。

示例

以下是 Clojure 中 reverse 的示例。

(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.htm
广告