changeset 4517:68b049bc9d4e

<fizzie> sed -i -e \'s/{4}/{1,4}/\' bin/unicode
author HackBot
date Fri, 07 Mar 2014 11:05:27 +0000
parents 7efc6d484fe6
children c02728b42d5c
files bin/unicode
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/unicode	Fri Mar 07 11:04:58 2014 +0000
+++ b/bin/unicode	Fri Mar 07 11:05:27 2014 +0000
@@ -3,7 +3,7 @@
 import re
 import sys
 import unicodedata
-def l(c): m = re.match('(?:U+)?([0-9a-f]{4})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
+def l(c): m = re.match('(?:U+)?([0-9a-f]{1,4})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
 try:
     print u''.join(map(l, sys.argv[1:])).encode('utf-8')
 except KeyError: