Common Lisp 整数到十六进制的转换

发布于 2024-08-06 23:24:20 字数 90 浏览 4 评论 0原文

是否有一个与 (parse-integer "ff" :radix 16) 类似的函数可以让我以另一种方式返回?如果我有 int 255 如何将其转换为字符串 ff?

Is there a similar function to (parse-integer "ff" :radix 16) that will take me back the other way? If I have the int 255 how do I convert it to the string ff?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鯉魚旗 2024-08-13 23:24:20
(write-to-string 255 :base 16)
(write-to-string 255 :base 16)
无言温柔 2024-08-13 23:24:20

您还可以将 format 与 < a href="http://www.lispworks.com/documentation/HyperSpec/Body/f_format.htm" rel="noreferrer">~X 基数指示符:

CL-USER> (format t "~X" 255)
FF
NIL

获取前导0x 且最小宽度为 4(例如用零填充),请使用

CL-USER> (format t "0x~4,'0X" 255)
0x00FF
NIL

要强制 10 到 15 之间的数字为小写,请使用 大小写转换指令 ~(如下:

CL-USER> (format t "0x~(~4,'0x~)" 255)
0x00ff
NIL

You can also use format with the ~X radix designator:

CL-USER> (format t "~X" 255)
FF
NIL

To get the leading 0x and a minimum width of, say, four padded with zeros, use

CL-USER> (format t "0x~4,'0X" 255)
0x00FF
NIL

To force the digits from 10 to 15 to be lowercase, use the case conversion directive ~( as follows:

CL-USER> (format t "0x~(~4,'0x~)" 255)
0x00ff
NIL
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文