我有一组数据,但我只需要处理utf-8
数据,所以我需要删除所有带有非utf-8
符号的数据。
当我尝试使用这些文件时,我收到:
UnicodeDecodeError: 'charmap' codec can't decode byte 0x8d in position 3062: character maps to <undefined> and UnicodeDecodeError: 'utf8' codec can't decode byte 0xc1 in position 1576: invalid start byte
我的代码
class Corpus:
def __init__(self,path_to_dir=None):
self.path_to_dir = path_to_dir if path_to_dir else []
def emails_as_string(self):
for file_name in os.listdir(self.path_to_dir):
if not file_name.startswith("!"):
with io.open(self.add_slash(self.path_to_dir)+file_name,'r', encoding ='utf-8') as body:
yield[file_name,body.read()]
def add_slash(self, path):
if path.endswith("/"): return path
return path + "/"
yield[file_name,body.read()]
我在这里和这里收到错误list_of_emails = mailsrch.findall(text)
,但是当我使用 utf-8 时一切都很好。