📜  使用页眉和页脚双引号将 xls 转换为 csv - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:53.137000             🧑  作者: Mango

代码示例1
//First save the xls file as csv through the Excel File>Save As menu. 
//Then, run this command in PowerShell (change to your directory and file name):
import-csv C:\Users\Documents\fileName.csv | export-csv C:\Users\Documents\fileName2.csv  -NoTypeInformation -Encoding UTF8