¡@

Home 

python Programming Glossary: xbf

Best way to decode unknown unicoding encoding in Python 2.5

http://stackoverflow.com/questions/1715772/best-way-to-decode-unknown-unicoding-encoding-in-python-2-5

re.compile r ^ x09 x0A x0D x20 x7E # ASCII xC2 xDF x80 xBF # non overlong 2 byte xE0 xA0 xBF x80 xBF # excluding overlongs.. x7E # ASCII xC2 xDF x80 xBF # non overlong 2 byte xE0 xA0 xBF x80 xBF # excluding overlongs xE1 xEC xEE xEF x80 xBF 2 # straight.. xC2 xDF x80 xBF # non overlong 2 byte xE0 xA0 xBF x80 xBF # excluding overlongs xE1 xEC xEE xEF x80 xBF 2 # straight 3..