如何按字母顺序排序文本文件?

时间:2016-08-11 02:11:57

标签: c#

我正在尝试对文本文件进行排序

有这样的文字

WORD1,word2和WORD3
字词1,word2和WORD3
字词1,word2和WORD3

word5,word6,word3

我需要排序,但此代码无效

using System;
using System.IO;

class myclass
{
    static void Main()
    {
        string infile =  File.ReadAllText(@"C:\Users\diego\Desktop\finalregex.txt"); 
        string outfile = File.ReadAllText(@"C:\Users\diego\Desktop\finalregex.txt"); 
        var contents = File.ReadAllLines(infile);
        Array.Sort(contents);
        File.WriteAllLines(outfile, contents);
    }
}

请帮帮我

1 个答案:

答案 0 :(得分:2)

假设您的示例中的格式,这应该足够了:

finally