Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
抱歉,如果这是一个愚蠢的问题,但有人知道一个函数可以让我在 Haskell 中用引号括起来一个数字,例如:
功能 7777 -> “7777”
功能 1234 -> “1234”
谢谢你的帮助 :)
你的意思是,将 7777 转换为字符串?您可以使用show.
show
show 7777 --> "7777"
如果您想要在该字符串周围加上引号,请执行以下操作:
"\"" ++ show 7777 ++ "\""