Clojure Strings reverse

2018-12-21 14:09 更新

反转字符串中的字符。

语法

以下是reverse的基本使用语法:

(reverse str)

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

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

下面是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)                             
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号