What is the best way to convert String to ByteString
Asked Answered
M

3

43

What is the best way to convert a String to a ByteString in Haskell?

My gut reaction to the problem is

import qualified Data.ByteString as B
import Data.Char (ord)

packStr = B.pack . map (fromIntegral . ord)

But this doesn't seem satisfactory.

Miskolc answered 12/7, 2010 at 20:35 Comment(2)
Modern: You should typically convert [Char] to Text and [Word8] to ByteString. Its still pack though :)Luciana
Converting Unicode to bytes involves using a Unicode encoding. Using pack is more similar to an unsafe cast.Stellite
S
65

Here is my cheat sheet for Haskell String/Text/ByteString strict/lazy conversion assuming the desired encoding is UTF-8. The Data.Text.Encoding library has other encodings available.

Please make sure to not write (using OverloadedStrings):

lazyByteString :: BL.ByteString
lazyByteString = "lazyByteString ä ß" -- BAD!

This will get encoded in an unexpected way. Try

lazyByteString = BLU.fromString "lazyByteString ä ß" -- good

instead.

String literals of type 'Text' work fine with regard to encoding.

Cheat sheet:

import Data.ByteString.Lazy as BL
import Data.ByteString as BS
import Data.Text as TS
import Data.Text.Lazy as TL
import Data.ByteString.Lazy.UTF8 as BLU -- from utf8-string
import Data.ByteString.UTF8 as BSU      -- from utf8-string
import Data.Text.Encoding as TSE
import Data.Text.Lazy.Encoding as TLE

-- String <-> ByteString

BLU.toString   :: BL.ByteString -> String
BLU.fromString :: String -> BL.ByteString
BSU.toString   :: BS.ByteString -> String
BSU.fromString :: String -> BS.ByteString

-- String <-> Text

TL.unpack :: TL.Text -> String
TL.pack   :: String -> TL.Text
TS.unpack :: TS.Text -> String
TS.pack   :: String -> TS.Text

-- ByteString <-> Text

TLE.encodeUtf8 :: TL.Text -> BL.ByteString
TLE.decodeUtf8 :: BL.ByteString -> TL.Text
TSE.encodeUtf8 :: TS.Text -> BS.ByteString
TSE.decodeUtf8 :: BS.ByteString -> TS.Text

-- Lazy <-> Strict

BL.fromStrict :: BS.ByteString -> BL.ByteString
BL.toStrict   :: BL.ByteString -> BS.ByteString
TL.fromStrict :: TS.Text -> TL.Text
TL.toStrict   :: TL.Text -> TS.Text

Please +1 Peaker's answer, because he correctly deals with encoding.

Selfimportant answered 8/11, 2016 at 15:45 Comment(4)
It took me a bit to figure out that Data.ByteString.UTF8 is in package utf8-string.Manumit
I also had to add - utf8-string to my Package.yamlBathy
This cheatsheet is a lifesaver for newbies like myself! Thanks!Catalonia
any idea on why my compiler shows "Could not find module ‘Data.ByteString.Lazy.UTF8’"Saree
A
32

Data.ByteString.UTF8.fromString is also useful. The Char8 version will lose the unicode-ness and UTF8 will make a UTF8-encoded ByteString. You have to choose one or the other.

Athematic answered 13/7, 2010 at 19:14 Comment(3)
In case the question comes up: this function is not located by Hoogle because it only indexes a small set of libraries (those shipped with GHC). Expanding the set of libraries indexed by Hoogle has came up several times but hasn't been done I think due to time constraints of the Hoogle developer (Neil). FYI, the function discussed here is from the utf8-string package.Sherburn
@TomMD: Hayoo addresses this: holumbus.fh-wedel.de/hayoo/…Athematic
@peaker: Not to my satisfaction. Hayoo does a poor job at type search, particularly when the type is general or polymorphic.Sherburn
L
15

A safe approach will involve encoding the unicode string:

import qualified Data.ByteString as B
import qualified Data.Text as T
import Data.Text.Encoding (encodeUtf8)

packStr'' :: String -> B.ByteString
packStr'' = encodeUtf8 . T.pack

Regarding the other answers: Data.ByteString.Char8.pack is effectively the same as the version in the question, and is unlikely to be what you want:

import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as C
import qualified Data.Text as T
import Data.Text.Encoding (encodeUtf8)
import Data.Char (ord)

packStr, packStr', packStr'' :: String -> B.ByteString
packStr   = B.pack . map (fromIntegral . ord)
packStr'  = C.pack
packStr'' = encodeUtf8 . T.pack

*Main> packStr "hellö♥"
"hell\246e"
*Main> packStr' "hellö♥"
"hell\246e"
*Main> packStr'' "hellö♥"
"hell\195\182\226\153\165"

Data.ByteString.UTF8.fromString is fine, but requires the utf8-string package, while Data.Text.Encoding comes with the Haskell Platform.

Liebfraumilch answered 1/4, 2014 at 18:30 Comment(1)
Codec.Binary.UTF8.String can also be usedSerpasil

© 2022 - 2024 — McMap. All rights reserved.