简体   繁体   中英

Unoconv convert excel to csv with semicolon without quotes

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?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM