Tagged Questions
2
votes
1answer
105 views
Haskell unicode pattern matching
I am about to start developing an application in Haskell that requires some Unicode support.
How to perform Unicode pattern matching in Haskell? I saw the GHC's syntax extension. But is there any ...
2
votes
4answers
373 views
Python issue with incorrectly formated strings that contains \x
At some point our python script receives string like that:
In [1]: ab = 'asd\xeffe\ctive'
In [2]: print ab
asd�fe\ctve \ \\ \\\k\\\
Data is damaged we need escape \x to be properly interpreted as ...
12
votes
6answers
2k views
Python and Unicode: How everything should be Unicode
Forgive if this a long a question:
I have been programming in Python for around six months. Self taught, starting with the Python tutorial and then SO and then just using Google for stuff.
Here is ...
10
votes
4answers
2k views
Using Haskell to output a UTF-8-encoded ByteString
I'm going out of my mind trying to simply output UTF-8-encoded data to the console.
I've managed to accomplish this using String, but now I'd like to do the same with ByteString. Is there a nice and ...
