【发布时间】:2013-08-26 23:58:04
【问题描述】:
我有一个制表符分隔的文件,其中有重复的命名标题;
[Column1] \t [Column2] \t [test] \t [test] \t [test] \t [test] \t [Column3] \t [Column4]
我想要做的是用整数重命名重复的列 [test]。 所以会变成类似
[Column1] \t [Column2] \t [test1] \t [test2] \t [test3] \t [test4] \t [Column3] \t [Column4]
到目前为止,我可以隔离第一行。然后数一下我找到的匹配项
string destinationUnformmatedFileName = @"C:\New\20130816_Opportunities_unFormatted.txt";
string destinationFormattedFileName = @"C:\New\20130816_Opportunities_Formatted.txt";
var unformattedFileStream = File.Open(destinationUnformmatedFileName, FileMode.Open, FileAccess.Read); // Open (unformatted) file for reading
var formattedFileStream = File.Open(destinationFormattedFileName, FileMode.Create, FileAccess.Write); // Create (formattedFile) for writing
StreamReader sr = new StreamReader(unformattedFileStream);
StreamWriter sw = new StreamWriter(formattedFileStream);
int rowCounter = 0;
// Read each row in the unformatted file
while ((currentRow = sr.ReadLine()) != null)
{
//First row, lets check for duplicate names
if (rowCounter = 0)
{
// Write column name to array
string delimiter = "\t";
string[] fieldNames = currentRow.Split(delimiter.ToCharArray());
foreach (string fieldName in fieldNames)
{
// fieldName must be followed by a tab for it to be a duplicate
// original code - causing the issue
//Regex rgx = new Regex("\\t(" + fieldName + ")\\t");
// Edit - resolved the issue
Regex rgx = new Regex("(?<=\\t|^)(" + fieldName + ")(\\t)+");
// Count how many occurances of fieldName in currentRow
int count = rgx.Matches(currentRow).Count;
//MessageBox.Show("Match Count = " + count.ToString());
// If we have a duplicate field name
if (count > 1)
{
string newFieldName = "\t" + fieldName + count.ToString() + "\t";
//MessageBox.Show(newFieldName);
currentRow = rgx.Replace(currentRow, newFieldName, 1);
}
}
}
rowCounter++;
}
我认为我在正确的轨道上,但我不认为正则表达式工作正常?
编辑:我想我已经知道如何使用 using 找到模式了;
Regex rgx = new Regex("(?<=\\t|^)(" + fieldName + ")(\\t)+");
这不是一个交易破坏者,但现在唯一的问题是它标签;
[Column1] \t [Column2] \t [test4] \t [test3] \t [test2] \t [test] \t [Column3] \t [Column4]
代替
[Column1] \t [Column2] \t [test1] \t [test2] \t [test3] \t [test4] \t [Column3] \t [Column4]
【问题讨论】:
-
“我不认为正则表达式工作正常”听起来你甚至不确定是否有问题。什么不工作?你有例外吗?错误的结果?没结果?此外,您可能希望对模式使用逐字字符串以避免双重转义:
@"\t(。其次,您可能应该在将其连接成模式之前运行fieldName到Regex.Escape(),因为它可能包含元字符。 -
关于您的编辑。如果这样可以解决问题,那么问题是匹配永远不会重叠。由于您在字段名称之前和之后需要
\t,因此相邻字段的匹配项会重叠。环视是一个很好的解决方案。另外,请将您的解决方案作为答案发布(如果没有更好的解决方案,请接受)。 -
感谢 m.buettner - 我已经发布了答案,但需要等待 2 天才能接受。现在感觉不好浪费人们的时间应该等待更长的时间和更多的研究。感谢您的帮助!
-
与论坛网站不同,我们不使用“谢谢”、“任何帮助表示赞赏”或Stack Overflow 上的签名。请参阅“Are taglines & signatures disallowed?”和“Should 'Hi', 'thanks,' taglines, and salutations be removed from posts?。