Haskell 程序中将一项字符串列表转换为字符串

发布于 2024-12-11 09:03:40 字数 288 浏览 0 评论 0原文

我在字符串列表上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

稍尽春風 2024-12-18 09:03:40

这就是 head 函数。但要小心:如果你在空列表上调用它,你会得到一个错误。

That would be the head function. But be careful: If you call it on an empty list, you'll get an error.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文