美文网首页
openpyxl.utils.exceptions.Illega

openpyxl.utils.exceptions.Illega

作者: 九乡河的小香瓜 | 来源:发表于2020-04-16 14:45 被阅读0次

    1,既然检测到excel中存在[\000-\010]|[\013-\014]|[\016-\037]这些非法的字符,因此可以将字符串中的非法字符替换掉即可,在重新写入excel即可。如下:
    text= ILLEGAL_CHARACTERS_RE.sub(r'', text)
    2,使用xlsxwriter
    import xlsxwriter
    outputData.to_excel(outputExcelFilePath, engine='xlsxwriter')

    相关文章

      网友评论

          本文标题:openpyxl.utils.exceptions.Illega

          本文链接:https://www.haomeiwen.com/subject/zlbrvhtx.html