Im writting a program that parses a specific text file that has data in it that im going to prcess later. Each part is seperated by a header in square brackets i was wondering how i could put each segment into an array using the header as a name for the array. Below is an example of the begining of the text file. ive set up a form that lets you choose a file you want to process and ive also set up a way of processing it line by line using objReader.ReadLine in a loop

[Params]
Version=106
Monitor=34
SMode=111111100
Date=20090725
StartTime=13:56:44.0
Length=00:24:30.5
Interval=1
Upper1=0
Lower1=0
Upper2=0
Lower2=0
Upper3=0
Lower3=0
Timer1=00:00:00.0
Timer2=00:00:00.0
Timer3=00:00:00.0
ActiveLimit=0
MaxHR=180
RestHR=70
StartDelay=0
VO2max=51
Weight=0

[Note]
TT Warm Up

[IntTimes]
00:24:30.5  140 83  154 174
0   0   0   41  112 33
0   0   0   0   0
0   12080   0   280 0   0
0   0   0   0   0   0

[IntNotes]

[ExtraData]

[Summary-123]
1470    0   1470    0   0   0
180 0   0   70
1470    0   1470    0   0   0
180 0   0   70
0   0   0   0   0   0
180 0   0   70
0   1470

[Summary-TH]
1470    0   1470    0   0   0
180 0   0   70
0   1470

[HRZones]
180
162
144
126
108
90
0
0
0
0
0  
link|improve this question
any help would be much appreciated – RoboCod101 May 10 '11 at 23:17
What code have you tried? – sixlettervariables May 10 '11 at 23:23
What do you want the result to look like? What do you mean by “name for the array”? Do you want something like Dictionary<string, string[]>, where the key would be the heading and the value would be a collection of lines under that heading? Is order of the headings important? – svick May 10 '11 at 23:24
i thought it might be quite easy to dynamically name the array after the header of each segment but i guess not well the only problem is sometimes some of the segments might not be there as you can choose wich ones you need. its a bike computer that stores information about each training session and you can choose which things it records. – RoboCod101 May 10 '11 at 23:37
Open source code for SportWatcher is readily available. – Hans Passant May 10 '11 at 23:41
show 1 more comment
feedback

4 Answers

You could use a pattern something like this.

List<String> paramsList;
List<String> noteList;
List<String> tempList;

while (line = objReader.ReadLine()) {
    if (line.StartsWith("[")) {

        // start new array
        if (line.Equals("[Params]"))
            tempList = paramsList = new List<String>();
        else if (line.Equals("[Note]"))
            tempList = noteList = new List<String>();

        // etc.

    } else if (String.IsNullOrEmpty(line)) {

        // ignore, end of array

    } else {

        // add element to array
        tempList.Add(line);

    }
}

// now use paramsList, noteList, etc. as needed

I'm not quite sure how you mean to use the header as a name for the array. Are the headers always the same for all of the files? You can't dynamically allocate the name of a variable based on a string, nor would you want to if you need to use it in later processing.

link|improve this answer
this seems a perfect starting point to put each segment into an array, thanks ill try it out now – RoboCod101 May 10 '11 at 23:39
thanks so much for your help got it working perfectly now yay! now just to start on processing the data – RoboCod101 May 11 '11 at 2:15
feedback

I'd parse it into a dictionary:

    Dictionary<string, List<string>> d = new Dictionary<string, List<string>>();

    using (StreamReader reader = new StreamReader("filename"))
    {
        string token = null;
        string line;
        while ((line = reader.ReadLine()) != null)
        {
            if (line.StartsWith("["))
                d[token] = new List<string>();
            else
                d[token].Add(line);
        }
    }

The above approach will also append data lines if you have duplicate tokens.

link|improve this answer
feedback

Don't reinvent the wheel. See this on CodeProject: INI Reader/Writer Class for C#, VB.NET, and VBScript

Also...

And more:

link|improve this answer
1  
That data file isn't strictly an INI file, look at section [IntTimes]. INI readers would only work if they have an API to return the entire section as one large string. Win32 has an API that might work for that function (it's unclear from the docs how it would respond to a section that isn't key=value), so it is possible that managed API writers would support that. – David Yaw May 11 '11 at 1:32
cheers for the links also very helpful – RoboCod101 May 11 '11 at 2:24
feedback

Since this file format goes beyond a normal INI file (see comment by David Yaw in Nicholas Carey's answer) I'd use a proper parser created by a parser generator. My tool of choice is the GOLD Parser Builder, but any other parser generator may do just as well.

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.