用可数据值替换文件中的文本

时间:2012-02-02 11:51:36

标签: c# file stream

我们有一个示例文本文件,其中包含以下文字:

  

上帝为那些爱他的人准备的事情

我们将文本读入datatable并分配了一些像这样的值:

 The            1
----------
 things         2
----------
 God            3
----------
 has            4
----------
 prepared       5
----------
 for            6
----------
 those          7
----------
 who            8
----------
 love           9
----------
 him            10
----------

我们正在尝试使用这些相应的数字替换输入文件中的文本。 可能吗?如果可能的话,我们该怎么办呢?

EDIT2: 我们编辑了这样的代码:

:

void replace()         {

        string s1, s2;            
        StreamReader streamReader;
        streamReader = File.OpenText("C:\\text.txt");
        StreamWriter streamWriter = File.CreateText("C:\\sample1.txt");
        int x = st.Rows.Count;
        int i1 = 0;                                       
            // Now, read the entire file into a string
            while ((line = streamReader.ReadLine()) != null)
            {
                for (int i = 0; i < x; i++)
                {
                s1 = Convert.ToString(st.Rows[i]["Word"]);
                s2 = Convert.ToString(st.Rows[i]["Binary"]);
                s2+="000";
                char[] delimiterChars = { ' ', '\t' };
                string[] words = line.Split(delimiterChars);

                    // Write the modification into the same file 
                    string ab = words[i1]; // exception occurs here
                   // Console.WriteLine(ab);
                    streamWriter.Write(ab.Replace(s1, s2));
                    i1++;                                       
                }                
            }
        streamReader.Close();
        streamWriter.Close();
    }

但是我们得到了一个“数组索引超出界限”的例外。我们无法找到问题。 提前谢谢

1 个答案:

答案 0 :(得分:0)

这里有一些代码可以帮助你开始,它还没有经过广泛的测试:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            File.WriteAllText("sample1.txt", "The things God has prepared for those who love him the");

            string text = File.ReadAllText("sample1.txt").ToLower();
            var words = text
                .Split(new [] { ' ' }, StringSplitOptions.RemoveEmptyEntries)
                .Distinct()
                .OrderByDescending(word => word.Length);

            var values = new Dictionary<string, int>();
            for (int i = 0; i < words.Count(); i++)
            {
                values.Add(words.ElementAt(i), i + 1);
            }
            foreach (var kvp in values)
            {
                text = text.Replace(kvp.Key, kvp.Value.ToString());
            }
            File.WriteAllText("sample1.txt", text);

            Console.WriteLine("Press ENTER to exit");
            Console.ReadLine();
        }
    }
}

它创建一个测试文本文件,读取它,将其转换为小写,为不同的单词创建标识符,并根据这些标识符替换文本。在短词之前替换长词以提供一些不良的替换预防。

更新:我刚刚注意到问题已更新,并且不再是在一个字符串中读取整个文件的选项.. 叹息 ..所以我的答案仅适用当你一次读写所有文本时,也许你可以在每个单词的阅读和写作时重复使用它。