gpt4 book ai didi

c# - 将 .txt 文件导入 .xlsx 文件

转载 作者:行者123 更新时间:2023-11-30 12:32:33 25 4
gpt4 key购买 nike

我正在编写一个将 .txt 文件(非定界文件)转换为 Excel 电子表格的脚本。我的问题发生在我需要提取 5-10 个字符之间的数据并且每行有几组数据的地方。

每行的每个字段中可以包含以下字符数,并且每行中有五个字段:

10 char    10 char   10 char  17 char           10 char

523452 D918 20120418 1FD7X2XTACEB8963820120606
523874 L9117244 20120409 3C6TDT5H0CG12130200000000
535581 G700 20120507 5GYFUD CT 00000000

我基本上需要能够提取 10、10、10、17、10 并将它们放在 Excel 中的一行中它们自己的单元格中。我可以像现在一样拉单元格,但它基于空间分隔,当字段没有占用全部空间时会导致问题,我最终得到一个包含空白单元格的 Excel 工作表。

最佳答案

您可以使用 String.Substring(您的标签显示为 C#):

using System;
using System.IO;

class Test
{
public static void Main()
{
try
{
// Create an instance of StreamReader to read from a file.
// The using statement also closes the StreamReader.
using (StreamReader sr = new StreamReader("TestFile.txt"))
{
String line;
// Read and display lines from the file until the end of
// the file is reached.
while ((line = sr.ReadLine()) != null)
{
String Chunk1 = line.Substring( 0, 10); // First 10
String Chunk2 = line.Substring(10, 10); // Second 10
String Chunk3 = line.Substring(20, 10); // Third 10
String Chunk4 = line.Substring(30, 17); // Now 17
String Chunk5 = line.Substring(47); // Remainder (correction: Chunk2 --> Chunk5)
Console.WriteLine("Chunks 1: {0} 2: {1} 3: {2} 4: {3} 5: {4})",
Chunk1, Chunk2, Chunk3, Chunk4, Chunk5);

}
Console.ReadLine();
}
}
catch (Exception e)
{
// Let the user know what went wrong.
Console.WriteLine("The file could not be read:");
Console.WriteLine(e.Message);
}
}
}

关于c# - 将 .txt 文件导入 .xlsx 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11228000/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com