Haskell 程序中将一项字符串列表转换为字符串
我在字符串列表上使用 take 1 ,因此它从列表中获取第一个字符串元素并将其放入新列表中...
I.E: take 1 ["hello", "this", "is", "an", "example"]
将输出:
["hello"]
我怎样才能使它输出只是:
"hello"
很容易吗?
(我只想要字符串列表中的第一个元素,并且希望它将其输出为字符串)。
I am using take 1 on a string list, so it takes the first string element from the list and puts it in a new list...
I.E: take 1 ["hello", "this", "is", "an", "example"]
Would output:
["hello"]
How can I make it so it outputs just:
"hello"
Is it easy?
(I only ever want the first element from a string list and I want it to output it as a string).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是
head
函数。但要小心:如果你在空列表上调用它,你会得到一个错误。That would be the
head
function. But be careful: If you call it on an empty list, you'll get an error.