本文介绍了如何在vb.net中将列值写入行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个像这样的文件

I have a file like this

No,Name,class,Marks
1,George,4,65
1,George,4,35
1,George,4,72
1,George,4,65
1,George,4,56
1,George,4,64
1,George,4,43
2,Martin,4,54
2,Martin,4,76
2,Martin,4,23
2,Martin,4,97
2,Martin,4,65
2,Martin,4,43
2,Martin,4,76



我的输出文件应如下所示:

编号,名称,类别,M1,M2,M3,M4,M5,M6,M7
1,乔治,4,65,35,72,65,56,64,43
2,马丁,4,54,76,23,97,65,43,76

在我的vb.net winform应用程序中,我需要读取文件并以输出格式写入新文件.有关如何执行此操作的任何想法?



My output file should be like this:

No,Name,class,M1,M2,M3,M4,M5,M6,M7
1,George,4,65,35,72,65,56,64,43
2,Martin,4,54,76,23,97,65,43,76

In my vb.net winform application,I need to read the file and write into a new file in output format. Any ideas on how to do this?

推荐答案


这篇关于如何在vb.net中将列值写入行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 20:10