Forked from robertklep/double-encoding-fixes.py
Last active
December 23, 2015 03:09
-
-
Save eliask/6571867 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
# -*- encoding: utf-8 -*- | |
# Usage: double_utf8_fix.py < input > output | |
import sys, re | |
# functions to detect/fix double-encoded UTF-8 strings | |
# Based on http://blogs.perl.org/users/chansen/2010/10/coping-with-double-encoded-utf-8.html | |
DOUBLE_ENCODED = re.compile(""" | |
\xC3 (?: [\x82-\x9F] \xC2 [\x80-\xBF] # U+0080 - U+07FF | |
| \xA0 \xC2 [\xA0-\xBF] \xC2 [\x80-\xBF] # U+0800 - U+0FFF | |
| [\xA1-\xAC] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] # U+1000 - U+CFFF | |
| \xAD \xC2 [\x80-\x9F] \xC2 [\x80-\xBF] # U+D000 - U+D7FF | |
| [\xAE-\xAF] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] # U+E000 - U+FFFF | |
| \xB0 \xC2 [\x90-\xBF] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] # U+010000 - U+03FFFF | |
| [\xB1-\xB3] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] # U+040000 - U+0FFFFF | |
| \xB4 \xC2 [\x80-\x8F] \xC2 [\x80-\xBF] \xC2 [\x80-\xBF] # U+100000 - U+10FFFF | |
) | |
""", re.X) | |
def is_double_encoded(s): | |
return DOUBLE_ENCODED.search(s) and True or False | |
def decode_double_encoded(m): | |
s = m.group(0) | |
s = re.sub(r'[\xC2-\xC3]', '', s) | |
s = re.sub(r'\A(.)', lambda m: chr(0xC0 | (ord(m.group(1)) & 0x3F)), s) | |
return s | |
def fix_double_encoded(s): | |
if not is_double_encoded(s): | |
return s | |
else: | |
# € turned up in my use case: | |
return DOUBLE_ENCODED.sub(decode_double_encoded, s).replace('Â','€') | |
if __name__ == '__main__': | |
sys.stdout.write( fix_double_encoded(sys.stdin.read()) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment