gpt4 book ai didi

haskell - 如何在 Haskell 中正确使用 toLower?

转载 作者:行者123 更新时间:2023-12-02 12:53:14 25 4
gpt4 key购买 nike

我最近开始学习 Haskell,想要将某些内容转换为小写。我查了“toLower”函数,但似乎不起作用。

Prelude> import Data.Text
Prelude Data.Text> toLower "JhELlo"

<interactive>:2:9: error:
* Couldn't match expected type `Text' with actual type `[Char]'
* In the first argument of `toLower', namely `"JhELlo"'
In the expression: toLower "JhELlo"
In an equation for `it': it = toLower "JhELlo"
Prelude Data.Text> toLower 'JhELlo'

<interactive>:3:9: error:
* Syntax error on 'JhELlo'
Perhaps you intended to use TemplateHaskell or TemplateHaskellQuotes
* In the Template Haskell quotation 'JhELlo'
Prelude Data.Text>

最佳答案

它不起作用,因为您尝试使用的版本在 Text 上运行,而不是在 String 上运行。这是两种不同的类型。此时您有两个选择:

1) 使用Data.Char中的toLower;这个对单个字符进行操作,您可以将其映射到字符串上:

map toLower "JhELlo"

2) 将字符串转换为 Data.Text(也可以选择再次转换回来):

unpack . toLower . pack $ "JhELlo"

实际上有other versions of toLower大约; Data.Sequences 中的一个似乎是多态的(因此应该对两者都有效),但它可能需要引入 mono-traversable 包作为依赖项。

关于haskell - 如何在 Haskell 中正确使用 toLower?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46568661/

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