gpt4 book ai didi

haskell - 用零填充 showHex 输出

转载 作者:行者123 更新时间:2023-12-05 05:17:50 25 4
gpt4 key购买 nike

有没有办法用零填充 showHex 的输出?例如我想要 showHex 11599274 "" 将输出 00b0fdaa。我天真的解决方案是:

take (8-l) ['0','0'..] ++ hex 
where hex = showHex 11599274 ""
l = length hex

(我知道我可以用printf "%08x"5)

最佳答案

这没有错。如果你在多个地方做它,那么就把它作为一个单独的功能。如果需要,您可以使用 Data.Text,它有 left and right justify .然而,这意味着首先将您的字符串打包到文本中。

关于haskell - 用零填充 showHex 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48685257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com