我正在尝试对文本文件进行排序
有这样的文字
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);
}
}
请帮帮我
答案 0 :(得分:2)
假设您的示例中的格式,这应该足够了:
finally