是否有一个库将整数转换为字符串,以便它们(整数)表示为单词?例如:
21 =>"二十一"
我也有兴趣将整数转换为表示罗马数字的字符串:
21 =>"XXI"
编写这样的转换函数对我来说不是问题,但我不想重新发明轮子.
看看cl-format,它可以返回"二十一",我用它来作为项目的euler.
http://clojuredocs.org/clojure_core/1.2.0/clojure.pprint/cl-format
还有罗马:
~@R prints arg as a Roman numeral: IV; and ~:@R prints arg as an old Roman numeral: IIII.