Please note that this question is the same as this one that did not answer the question earlier.
It is also the same as this PHP question , but I am looking for the haskell equivalent.
RFC 2047 defines the "coded word" coding standard and provides an example:
=?iso-8859-1?q?this=20is=20some=20text?=
Is there a standard haskell library for working with decoding this into the correct representation Text?
It doesn't have to be too complicated to write a custom analyzer using parsec and RFC Spec, but it seems like a normal, resolved problem in other languages that I cannot find the Haskell equivalent to, and I would prefer not to repeat - enter the wheel here.
source
share