Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

string - Haskell writes ' ' instead of a newline

I have this code and instead of it printing out " ", I want it to put the next string on a new line, but cannot seem to figure it out. Any pointers?

onSeparateLines :: [String] -> String
onSeparateLines [] = ""
onSeparateLines ( x:[] ) = x
onSeparateLines ( x:xs ) = x ++  "
" ++ onSeparateLines xs

what I get is

"AAAA
AAAA"

which should be:

"AAAA"
"AAAA"
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The given function and your use of " " are correct, so the error must be elsewhere. Without knowing the details, I suspect that you are using (the equivalent of) print rather than putStr to print your string. Make sure that your string is not being shown before it is printed.

If this is in GHCi, be aware that values are printed using print, so

> onSeparateLines ["foo", "bar"]

will print the string and show escaped characters. You want

> putStrLn (onSeparateLines ["foo", "bar"])

instead.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...