Last active
April 21, 2016 06:18
-
-
Save TheWaWaR/69764be35f7c0687faa405c4dad2e812 to your computer and use it in GitHub Desktop.
HTML diff (支持中文断句)
This file contains hidden or 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
#coding: utf-8 | |
## 支持中文断句 | |
punctuation = u'\uff02\uff03\uff04\uff05\uff06\uff07\uff08\uff09\uff0a\uff0b\uff0c\uff0d\uff0f\uff1a\uff1b\uff1c\uff1d\uff1e\uff20\uff3b\uff3c\uff3d\uff3e\uff3f\uff40\uff5b\uff5c\uff5d\uff5e\uff5f\uff60\uff62\uff63\uff64\u3000\u3001\u3003\u3008\u3009\u300a\u300b\u300c\u300d\u300e\u300f\u3010\u3011\u3014\u3015\u3016\u3017\u3018\u3019\u301a\u301b\u301c\u301d\u301e\u301f\u3030\u303e\u303f\u2013\u2014\u2018\u2019\u201b\u201c\u201d\u201e\u201f\u2026\u2027\ufe4f\ufe51\ufe54\xb7\uff01\uff1f\uff61\u3002' | |
import re | |
from lxml.html import diff | |
diff.split_words_re = re.compile(r'[^\s%(p)s]+(?:[\s%(p)s]+|$)' % dict(p=punctuation), re.U) | |
text1, text2 = u'这个是中文内容, Ruby is the bast', u'这是中国语内容,Ruby is the best language.' | |
print diff.split_words(text1) | |
print diff.split_words(text2) | |
print diff.htmldiff(text1, text2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment