如何将Unicode转义序列转换为Haskell中的Unicode字符串

编程入门 行业动态 更新时间:2024-10-25 04:23:25
本文介绍了如何将Unicode转义序列转换为Haskell中的Unicode字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个像\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591的字符串我想解码它。我试图搜索unicode库,但没有成功。 前奏> putStrLn\3619\ 3657\\3634\\3609\\3648\\3592\\3657\\3648\\3621\\3657\\3591

请注意,您实际上没有字符串\3619\3657\3634\3609\3648\3592\3657 \ 3648\3621\3657\3591–相反,您有UTF-32字符串ร้านเจ้เล้ง,其中\3619\3657 ...

Prelude>\3619\3657\3634\ 3609 \ 3648 \ 3592 \ 3657 \ 3648 \ 3621 \ 3657 \ 3591另一方面, putStrLn , putChar , hPutStr 等功能只需以UTF-8格式转储字符串本身,而不是以ASCII安全表示形式。

如果您实际上是从文件或某物中读取转义字符串,您可以只需阅读即可:

Prelude> s s \ \\3619\\3657\\3634\\3609\\3648\\3592\\3657\\3648\\3621\\ \3657\\\3591\ putStrLn $ read s $ >

I have a string like "\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591" which I want to decode it. I tried search the unicode library without success.

解决方案

Prelude> putStrLn "\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591" ร้านเจ้เล้ง

Note that you don't actually have the string "\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591" – rather, you have the UTF-32 string ร้านเจ้เล้ง, for which "\3619\3657..." happens to be a ASCII-compliant literal. By default, GHCi uses the Show instance to display results, which doesn't so much show things as spit out literals that can be used as Haskell code for the thing. It's conservative in terms of unicode. That's why

Prelude> "ร้านเจ้เล้ง" "\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591"

On the other hand, the putStrLn, putChar, hPutStr etc. functions will just dump the string itself in UTF-8 rather than an ASCII-safe representation thereof.

If you're actually reading the escaped string from a file or something, you can simply read it:

Prelude> s <‌- getLine "\3619\3657\3634\3609\3648\3592\3657\3648\3621\3657\3591" Prelude> s "\"\\3619\\3657\\3634\\3609\\3648\\3592\\3657\\3648\\3621\\3657\\3591\"" -- Note double escaping, because I'm showing a string that contains a string literal. Prelude> putStrLn $ read s ร้านเจ้เล้ง

更多推荐

如何将Unicode转义序列转换为Haskell中的Unicode字符串

本文发布于:2023-11-02 17:47:40,感谢您对本站的认可!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:转换为   字符串   序列   如何将   Unicode

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!