使用 C# 如何将文本文件拆分为多个文件

Using C# how can I split a text file into multiple files

如何将包含 ASCII 码 SOH 和 ETX 的文本文件拆分为多个文件?

例如,我命名为 001234.txt 的文本文件包含以下内容:

SOH{ABCDXZY}ETX

SOH{ABCDXZY}ETX

SOH{ABCDXZY}ETX

我想为每个以 SOH 开头并以 ETX 结尾的 ASCII 代码将单个文本文件拆分为多个文本文件。

单个文本文件名应拆分为 101234.txt , 111234.txt..等,每个包含一个以 SOH 开头并以 ETX 结尾的内容。

感谢任何帮助。

使用System.IO; 使用 System.Linq;

namespace ASCII_Split
{
    class Program
    {
        static void Main(string[] args)
        {
            var txt = "";
            const char soh = (char)1;
            const char eox = (char)3;
            var count = 1;
            var pathToFile = @"‪‪C:\Temp[=10=]599060.txt";

            using (var sr = new StreamReader(pathToFile))
                txt = sr.ReadToEnd();

            while (txt.Contains(soh))
            {
                var outfil = Path.Combine(Path.GetDirectoryName(pathToFile), count.ToString("000"), "_fix.txt");
                var eInd = txt.IndexOf(eox);
                using (var sw = new StreamWriter(outfil, false))
                {
                    sw.Write(txt.Substring(1, eInd - 1));
                }
                txt = txt.Substring(eInd + 1);
                count++;
            }

        }
    }
}

这应该或多或少地起到了作用:


    //Read all text from file into a string
    var fileContent = File.ReadAllText("001234.txt");

    //split text into array according to a Regex pattern
    var pattern = @"SOH*ETX";
    var splitContent = Regex.Split(fileContent, pattern);

    //counter for file names
    var counter = 10;
    foreach(var content in splitContent)
    {
        //create file and use stream to write to it
        using (var stream = File.Create($"{counter++}1234.txt"))
        {
            var contentAsBytes = new UTF8Encoding(true).GetBytes(content);
            stream.Write(contentAsBytes, 0, contentAsBytes.Length);
        }
    }

由 SOH 和 ETX 提供,您指的是各自的控制字符,这里应该可以帮助您:

var txt = "";
const char soh = (char) 1;
const char eox = (char) 3;
var count = 1;
var pathToFile = @"C:[=10=]_Projects_temp\test.txt";

using (var sr = new StreamReader(pathToFile))
    txt = sr.ReadToEnd();

while (txt.Contains(soh))
{
    var outfil = Path.Combine(Path.GetDirectoryName(pathToFile), count.ToString("000"), "_test.txt");
    var eInd = txt.IndexOf(eox);
    using (var sw = new StreamWriter(outfil, false))
    {
        sw.Write(txt.Substring(1, eInd - 1));
    }
    txt = txt.Substring(eInd + 1);
    count++;
}

谢谢 LocEngineer,程序运行正常,我几乎没有做任何改动,使用“+”而不是“,”将文件名与计数器连接起来。

using System.IO;
using System.Linq;


namespace ASCII_Split
{
    class Program
    {
        static void Main(string[] args)
        {
            var txt = "";
            const char soh = (char)1;
            const char eox = (char)3;
            var count = 1;
            var pathToFile = @"C:\Temp[=10=]599060.txt";

            using (var sr = new StreamReader (pathToFile))
                txt = sr.ReadToEnd();

            if (txt.IndexOf(soh) != txt.LastIndexOf(soh))
            {


                while (txt.Contains(soh))
                {
                    var outfil = Path.Combine(Path.GetDirectoryName(pathToFile), count.ToString("00") + Path.GetFileName(pathToFile));
                    var eInd = txt.IndexOf(eox);
                    using (var sw = new StreamWriter(outfil, false))
                    {
                        sw.Write(txt.Substring(1, eInd - 1));
                    }
                    txt = txt.Substring(eInd + 1);
                    count++;
                }
                File.Move((pathToFile), (pathToFile) + ".org");
            }
        }
    }
}