Unoconv convert excel to csv with semicolon without quotes

萝らか妹 提交于 2020-02-05 06:56:09

问题


I'm doing a simple command for convert excel to csv with semicolon

 unoconv -f csv -e FilterOptions="59,34,0,1" filex.xlsx

but the results appears with quotes like this

"name";"lastname";"age"

How could I convert without quotes?


回答1:


I solve with this

     unoconv -f csv -e FilterOptions="59,0,0,1"  filex.xlsx

I use this wiki

https://wiki.openoffice.org/wiki/Documentation/DevGuide/Spreadsheets/Filter_Options#Token_8.2C_csv_import


来源:https://stackoverflow.com/questions/43237305/unoconv-convert-excel-to-csv-with-semicolon-without-quotes

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!