在 c#.net 中将值/数据从一列拆分为 3 个单独的列
我在 datagridview 中读取/显示 csv 文件时遇到一些困惑。
情况是这样的,我正在读取由 7 个连续数据/列/字段组成的 csv 文件。我正在尝试在包含 9 列/字段的 datagridview 中显示这些数据。
现在,csv 文件中的 7 个数据/列/字段由 0 到 3 或 1 到 3 的组合组成。我想将 csv 中 7 列/字段的数据拆分为 datagridview 的最后 3 列/字段。
例如)。 csv 字段中的 7 列由 123 组成,然后在 datagridview 中,列/字段 7 中的值 = 1 列/字段 8 = 2 和列/字段 9 = 3。
我想知道,是否可以在 C#.NET 中将值拆分为 3 个不同的列。
谢谢, 鲁沙卜·沙阿。
I have some confusion in reading/displaying csv file in datagridview.
Here is the situation, I am reading csv file which consist of 7 data/column/fields in a row. I am trying to display those data in datagridview which contain 9 column/fields.
Now, 7 data/column/field in csv file consist value either from 0 to 3 or in combination of 1 to 3. I want to split the data of 7 column/field in csv into last 3 column/field of datagridview.
eg). 7 column in csv field consist 123 then in datagridview it value in column/field 7 = 1
column/field 8 = 2 and column/field 9 = 3.
I want to know that, is it possible to split value into 3 different column in C#.NET.
Thanks,
Rushabh Shah.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将创建一个类来存储 CSV 中的每条记录(行)。在此类中公开了与 DataGridView 中的九列相对应的九个属性。该类将处理将第七列的值拆分为第八列和第九列的逻辑,就像您所描述的那样。
当您在 CSV 中读取时,创建此类的实例,将它们放入列表(或其他集合)中并将列表绑定到 DataGridView。
这就是我的意思。创建以下类:
将 DataGridView 放在表单上并运行它:
请注意,这是极其脆弱的代码,您将需要在生产应用程序中以不同的方式执行我在此显示的几乎所有内容。但它确实表明了我的意思。
I would create a class to store each record (row) in your CSV. In this class expose nine properties that correspond to the nine columns in your DataGridView. The class would handle the logic of splitting the values of your seventh column into the eight and nineth columns like you described.
When you read in your CSV create instances of this class, put them in a List (or another collection) and bind the list to the DataGridView.
Here's what I mean. Create the following class:
Drop a DataGridView on a form and run this:
Note that this is extremely fragile code and you'll want to do almost everything I show here differently in a production application. It does show what I mean though.
首先,将 CSV 文件数据放入数据表中,然后在下一步中放置一个循环并解析值列虎钳和
例如: if(dataTable.Row[index][7]==123;
然后将值拆分为数组,然后将数组值设置为数据表
First you get the CSV file data into a Data Table and in the next step you put a loop and parse the value column vise and
ex: if(dataTable.Row[index][7]==123;
then splite the value into an array then set the array value to data Table