Sorry if this is a stupid question but does anyone know of a function which would allow me to enclose a number in quotation marks in Haskell, for example:

function 7777 -> "7777"

function 1234 -> "1234"

Thanks for any help :)

有帮助吗?

解决方案

Do you mean, convert 7777 to a string? You can use show.

show 7777 --> "7777"

If you then want quotes around that string do:

"\"" ++ show 7777 ++ "\""
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top