0

我有一个大文本文件,最大可达 +500MB),我需要替换特定字符串中出现的所有日期。我正在使用正则表达式来匹配日期,效果很好。我需要捕获行号、匹配项以及匹配项所在的整行。我让那部分工作,这是我正在努力解决的替换部分。理想情况下,我想进行匹配,捕获额外的信息并通过文件进行一次替换。我怎样才能有效地做到这一点?这是我用来执行正则表达式的。

while ((line = InputFile.ReadLine()) != null)
{
    // Increment for each line read
    x++;

    // Try to match each line against the Regex.
    Match m = reg.Match(line);                    
    if (m.Success) 
    {
        DateTime result;
        if (!(DateTime.TryParse(m.Groups[0].Value, out result)))
        {
            // add it to the DT
            MatchTable.Rows.Add(x, m.Groups[0].Value, line);   
        }
        else if (DateTime.Parse(m.Groups[0].Value).Year <= 1753) // 1753 is the earliest date that can be stored in SQL datetime
        {
            // add it to the DT                       
            MatchTable.Rows.Add(x, m.Groups[0].Value, line);
        }
    }
}
4

1 回答 1

1

我想我可能会通过修改的行构建第二个临时文件行,然后删除旧文件并在完成时重命名新文件。

于 2013-03-26T14:23:30.303 回答