Search code examples
haskellquotation-marks

Haskell - adding quotation marks (speech marks)


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 :)


Solution

  • 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 ++ "\""