fig bug 當漢字接在後面時,偵測到的 POJ 出現錯誤

This commit is contained in:
2011-09-06 07:45:49 +08:00
parent 6163791014
commit 4e306346ec

View file

@ -78,12 +78,8 @@ orig_content = orig_content[1:] #刪除頭一個字(空白)
'''處理調號''' '''處理調號'''
#i.e. punctuation_list符合符號定義的字元 list。用 regexp 語法
punctu_list = '([' + string.punctuation +\
"、,。?!()「」『』《》〈〉【】〔〕;:…- \s" + '])'
#音節list包含符號、標點、其他文字 #音節list包含符號、標點、其他文字
syllable_list = re.split(punctu_list, orig_content) syllable_list = re.split('([^a-zA-Z0-9]+)', orig_content)
result = "" #輸出的結果(預設為空) result = "" #輸出的結果(預設為空)