如何在 Haskell 中将 Char 转换为 Int?

发布于 2024-10-20 21:38:21 字数 238 浏览 2 评论 0原文

我需要在 Haskell 中将 Char 转换为 Int ?例如:

a = '\x2' -- a == 2
          -- type of a should be Char
b = charToInt a -- b == 2
                -- type of b should be Int

我怎样才能实现这一目标?

I need to convert a Char to an Int in Haskell? For example:

a = '\x2' -- a == 2
          -- type of a should be Char
b = charToInt a -- b == 2
                -- type of b should be Int

How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

鸩远一方 2024-10-27 21:38:21

您可以使用 ord 函数来转换字符到它的整数(序数)表示。

chr 则相反。

> ord '\x2'­
  => 2
> chr 97
  => 'a'
> ord (chr 42)
  => 42

You can use the ord function to convert a character to its integer (ordinal) representation.

chr goes the other direction.

> ord '\x2'­
  => 2
> chr 97
  => 'a'
> ord (chr 42)
  => 42
dawn曙光 2024-10-27 21:38:21

您可以使用 fromEnum 或 Data.Char.ord。

You can use fromEnum or Data.Char.ord.

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