4

.txtファイル(区切りなし)をExcelスプレッドシートに変換するスクリプトに取り組んでいます。私の問題は、5〜10文字のデータをプルする必要があり、各行に複数のデータセットがある場合に発生します。

各行には、各フィールドに次の文字数を含めることができ、各行にプルするフィールドは5つあります。

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シートになってしまうと問題が発生します。

4

3 に答える 3

1

次を使用できます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);
     }
  }
}
于 2012-06-27T15:03:06.777 に答える
1

インポートがExcel内から行われる場合(DATA、外部データの取得、テキストから、固定幅)、コードは必要ありません。

SO1228000の例

于 2015-08-09T09:54:36.343 に答える
0

Mid()を使用して、文字列の特定の部分を取得できます。行がで保持されている場合はcurrentLine、次のようにフィールドを抽出できます。

Dim fields(5)
fields(1) = Mid(currentLine, 1, 10)
fields(2) = Mid(currentLine, 11, 10)
fields(3) = Mid(currentLine, 21, 10)

等々。

于 2012-06-27T14:23:38.450 に答える