本文介绍了使用c代码将Excel转换为csv的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用C语言将.xls文件转换为多个csv文件,其中我的数据格式为empid,name,age,sal,depart,grade,并且需要使用代码创建3个文件。它们就像文件1:empid,名称,年龄文件2:empid,sal文件3:empid,离开文件4:等级,工资结构,这应该在一次性批处理模式下完成

how to convert .xls file to multiple csv files using C language where i have data in a format empid,name,age,sal,depart,grade and need to create 3 files using the code . They are like file 1 : empid,name, age file 2: empid, sal file 3: empid,depart file 4: grade, salary structure and this should be done in one shot batch mode

推荐答案


这篇关于使用c代码将Excel转换为csv的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 23:20