what i want to do is de-dupe a text file (against itself) based on the split. Once the de-dupe has been complete write out to a new file and keep the first result. So a basic example is. I guess the question is how do you de dupe a text file in C# based on a string split.

File 1:
Apple|Turnip3234
Apple|Tunip22
Fox|dsa34
Turtle|3423
Hamster|d34
Fox|sdw2

Result:
Apple|Turnip3234
Fox|dsa34
Turtle|3423
Hamster|d34

link|improve this question

What is your question? – R. Martinho Fernandes Jan 18 '11 at 14:57
You need to make explicit what constitutes a "dupe" and how to select which one to keep. – Adam Robinson Jan 18 '11 at 14:57
C# would work, but for something so simple I might recommend a tool like Ruby, Python, or Perl. You won't notice an appreciable time difference unless the files in question are huge! That being said, you're going to use a Dictionary data structure in any language to achieve this (check if the key is present, if it is add it, otherwise skip adding it to the dictionary), then for each line in the original lookup the other side of the split and print them. – Christopher Pfohl Jan 18 '11 at 15:00
1  
@Cpfohl: If he know C# or C or something similar (at least some syntax) and don't know Ruby at all, he probably do it sooner in C#. – Al Kepp Jan 18 '11 at 15:01
1  
@Cpfohl: what if the rest of the application is written in C#? Is it that good to use Ruby, Python, or Perl for this? Maybe you could justify IronRuby or IronPython (is there IronPerl? I hope not), but spinning off the native interpreter sounds totally overkill to me. – R. Martinho Fernandes Jan 18 '11 at 15:03
show 3 more comments
feedback

5 Answers

up vote 3 down vote accepted
string inputFile; // = ...
string outputFile; // = ...
HashSet<string> keys = new HashSet<string>();

using (StreamReader reader = new StreamReader(inputFile))
using (StreamWriter writer = new StreamWriter(outputFile))
{
    string line = reader.ReadLine();
    while (line != null)
    {
        string candidate = line.Split('|')[0];
        if (keys.Add(candidate))
            writer.WriteLine(line);

        line = reader.ReadLine();
    } 
}
link|improve this answer
feedback

Use HashSet<string>. Store there left part of line (everything preceding |).

On each line call hashset.Contains(leftpart) to test if that line is a "dupe".

link|improve this answer
Right. No need to store the lines, the first 'unique' one can be written directly. – Henk Holterman Jan 18 '11 at 15:05
Yes of course, you can write directly, just need to keep the hashset. – Al Kepp Jan 18 '11 at 15:12
1  
@Al: I'm pretty sure Henk was agreeing with you. – Adam Robinson Jan 18 '11 at 15:13
@Adam: Yes I was. It was the 1st answer w/o Dictionary. – Henk Holterman Jan 18 '11 at 15:15
OK, nice to hear it. – Al Kepp Jan 18 '11 at 15:18
feedback

You can create Dictionary<string,string> where key is your first word and value is the second one. Then you can just go through all your lines, split them and check if first word occurs in Keys, and add this pair if it does not.

link|improve this answer
feedback

This will always use the first value encountered (and it's untested, but the concepts are correct).

Dictionary<String, String> dupeMap = new Dictionary<String, String>();
foreach (string line in File.Readlines("foo.txt")) {
    key = line.Split("|")[0];
    if (!dupeMap.ContainsKey(key)) {
        dupeMap.Add(key, line);
    }
}

Then you can write them all back by iterating over the Dictionary, though this is not stable because you can't be certain to get the lines back in order.

using (TextWriter tw = new StreamWriter("foo.txt")) {
    foreach (string key in dupeMap.Keys()) {
        tw.WriteLine(dupeMap[key]);
    }
}
link|improve this answer
feedback

An easy solution is to only add values you haven't met yet.

var allLines = File.ReadAllLines(@"c:\test.txt");

    Dictionary<string, string> allUniques = new Dictionary<string, string>();

    foreach(string s in allLines)
    {
        var chunks = s.Split('|');
        if (!allUniques.ContainsKey(chunks[0]))
        {
            allUniques.Add(chunks[0], s);
        }       
    }

    File.WriteAllLines(@"c:\test2.txt", allUniques.Values.ToArray());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.