gpt4 book ai didi

haskell - 如何用writeFile将每个[String]写入haskell中的文件?

转载 作者:行者123 更新时间:2023-12-02 02:49:08 24 4
gpt4 key购买 nike

我如何用 writeFile 将 [String] 写入其中?

例如我有 ["one", "two", "three"]
我想进入文件:

one two three

如何用haskell做到这一点?如果需要,我可以编写一个附加函数。

最佳答案

我建议使用 unwords :: [String] -> String而不是使用 intersperse .我想简单地回答以下简单的例子,使用 ghci :

Prelude> let ss = ["one", "two", "three"]
Prelude> writeFile "myfile" $ unwords ss
Prelude> readFile "myfile"
"one two three"

关于haskell - 如何用writeFile将每个[String]写入haskell中的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5764242/

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