vote up 0 vote down star

Im trying to get specific lines from a file and put them in a another string or maybe if we can put it in anothe textbox it wont be a prob :P

string[] msglines;

msglines = System.IO.File.ReadAllLines(@"C:\\Users\xA\Desktop\MESSAGES.txt");

for (int x = 0; x < msglines.Length; x++)
{
    this.textBox5.Text = msglines[c];
    c = c + 2;
}

I get a : Index was outside the bounds of the array.

flag
4  
What is this "c" in the loop and why don't you use "x"? Why do you add 2 to the "c"? – Moayad Mardini May 27 at 7:51
Probably a typo but you don't need the double \\ in the filepath – Henk Holterman May 27 at 8:02
(replied to comment) – Marc Gravell May 27 at 9:42

12 Answers

vote up 7 vote down

If you want to get every second line.

Change your loop to

//Odd Lines
for (int x = 0; x < msglines.Length; x = x + 2)
{
    this.textBox5.Text += msglines[x];
}

//Even Lines
for (int x = 1; x < msglines.Length; x = x + 2)
{
    this.textBox5.Text += msglines[x];
}

As was pointed out in the comments, you can shorten x = x + 2 to x += 2

And in the interest of LinqY Goodness...

//ODDS
msgLines
    .Where((str, index) => index % 2 == 0)
    .ToList()
    .ForEach(str => textBox1.Text += String.Format("{0}\r\n", str));

//EVENS
msgLines
    .Where((str, index) => index % 2 == 1)
    .ToList()
    .ForEach(str => textBox1.Text += String.Format("{0}\r\n", str));
link|flag
or x += 2 – Svish May 27 at 8:03
For every odd line, change to for(int x = 1;... – Henk Holterman May 27 at 8:04
why is the second, fourth, sixth etc the odd lines? This is 0 based indexing, so 0, 2, 4 are all odd! – ck May 27 at 8:05
Yep... typo on my behalf... will edit & switch them around – Eoin Campbell May 27 at 8:07
You aren;t the only one in this thread to have done the same thing.... – ck May 27 at 8:07
show 1 more comment
vote up 3 vote down

your loop is controlled by x, but you're indexing by c [hence you need logic to prevent c getting greater than size of the array]

link|flag
vote up 3 vote down

Because you are increasing the line index (c) by 2 each time; just use x:

this.textBox5.Text = msglines[x];

Of course, from a loop this will result in just the last line being shown. What line is it you actually want to show?


Edit re comment; in which case, simply:

StringBuilder sb = new StringBuilder();
for (int x = 1; x < msglines.Length; x+=2)
{
    sb.AppendLine(msglines[x]);
}
this.textBox5.Text = sb.ToString();
link|flag
I want every odd line to sent to textbox...thats why I used c in there which is int'd from c=1 – kaka May 27 at 7:57
vote up 2 vote down

In your for loop, you are using c. You need to use x. Could I suggest that you have a look at the reference for for.

Try this instead...

string[] msglines;

msglines = System.IO.File.ReadAllLines(@"C:\\Users\xA\Desktop\MESSAGES.txt");


for (int x = 0; x < msglines.Length; x++)
{
    this.textBox5.Text = msglines[x];                       
}
link|flag
vote up 1 vote down

Then you should use X as an index, with a step of 2, instead of 1.

link|flag
vote up 1 vote down

Try this

string[] msglines;

 msglines = System.IO.File.ReadAllLines(@"C:\Users\xA\Desktop\MESSAGES.txt");

 for (int x = 0; x < msglines.Length; x++)
  {

      this.textBox5.Text = msglines[x++];

  }
link|flag
vote up 1 vote down

For simplicity I'll use an example of taking every other character from a string, but the case of taking every other line from an array of strings is analogous.

Lets take "Hello" as an example for your msglines string

alt text

and let us say that your global variable c i initialized to 0 before you enter the for loop. Your msglines.Lenght will be 5. In the the fourth iteration through the loop (x == 3) you are going to try to access msglines[6], which is outside of the bounds of the array, hence the error.

You probably wanted something along the lines of

int x = 0;
while(x <= msglines.Lenght){
  this.textBox5.Text += msglines[x];
  x = x + 2;
}

or

for(x=0; x <= msglines.Lenght ; x+=2){
  this.textBox5.Text += msglines[x];
}

To get the odd lines you would start with x initialized to 1.

As for which of the two fully equivalent versions above to use, I would suggest using the one that is more readable to you. In my experience that is always the better choice.

link|flag
vote up 1 vote down

You say you want all odd-numbered lines in the TextBox, but your loop will only show the last line, as you overwrite the contents on each pass.

To show all odd-numbered lines, separated by line breaks:

string lineSep = "";
for (int x = 0; x < msglines.Length; x += 2)
{
    this.textBox5.Text += lineSep + msglines[x];
    lineSep = "\r\n";
}
link|flag
vote up 0 vote down

You have a double backslash in the ReadAllLines() call, causing it to fail opening the file.

Also, you are using c as an array index, it looks like you want x

link|flag
Extra slashes are ignored (and forward slashes honoured as long as you use them semi consistenly) by the OS. And it wouldnt throw an IndexOutOfRangeException. – Ruben Bartelink May 27 at 7:52
Ok. That still doesn't solve the fact that he is indexing his array wrong. – Charlie Somerville May 27 at 7:56
@Ruben - this isn't true, try it. It is puzzling though - if the msglines array was empty because of a failed read (though I'd expect an exception) then the for shouldn't be entered to produce the outofbounds exception. 'Course all of this is easily debuggable for the OP :S – annakata May 27 at 7:57
@charlie: my point is that the error is in the loop, based on the exception. So you're just echoing my point by saying that still doesnt solve his problem (which my answer did). I'm amused by how this question has mushroomed though! – Ruben Bartelink May 27 at 9:06
@annakata: Paste "var l = File.ReadAllLines(@"C:\\Users\Me\Desktop\Config.xml"); l.Dump();" into linqpad (dimecasts.net has great tutorials on same). It works. (Yes, dir c:\\users doesnt work in cmd.exe but does in PS. dir c:\users\\a\\b works in both). IOW it may seem because the parsing in cmd.exe is broken that double backslashes in paths are not allowed, but they are once you hand them to the windows APIs (thout it is possible that System.IO.File/Path do additional processing) – Ruben Bartelink May 27 at 9:09
vote up 0 vote down

The code i wrote is exactly how I want it to be.....

I actually want every odd line from my file to be sent to the textbox.and yeah P.S C initializes from 1

link|flag
1  
the code may be how you want it to be, but there are better ways of doing the same thing - clearly from the responses here your code is confusing which is as serious a problem as any – annakata May 27 at 8:00
2  
Imagine a msglines.Length of 5. Take a piece of paper and write down the values of c and x for each iteration of your loop. – xsl May 27 at 8:02
vote up 0 vote down

Besides the already mentioned indexing problems of c versus x, you are also overwriting textBox5.Text on every iteration, so you'll only ever see the last line. It seems somehow unlikely to be intended behaviour. You might want something like this instead:

this.textBox5.Text += msglines[x]; // note x instead of c

Or if you really want everything and the +2 was a typo in itself you could do this without any loop:

this.textBox5.Text = String.Join( "\n", msglines );
link|flag
vote up 0 vote down

The following function will return an IEnumerable that gives the odd numbered lines in a file:

private IEnumerable<string> GetOddLines(string fileName)
{
    string[] lines = File.ReadAllLines(fileName);
    IEnumerator allLines = lines.GetEnumerator();
    while (allLines.MoveNext())
    {
        yield return (string)allLines.Current;
        if (!allLines.MoveNext())
        {
            break;
        }
    }
}

If you want the even numbered lines, just add a call to allLines.MoveNext() before the while loop.

link|flag
Aside; you should always try to dispose enumerators; this is easier if you use the generic IEnumerator<T>, since that implements IDisposable. But if you want a streaming odd line reader, it would seem more efficient to start with StreamReader... – Marc Gravell May 27 at 9:46
You are right of course... :-) The File.ReadAll*** methods tend to be quite slow but that is the price you pay for quick-and-easy I guess. – Rune Grimstad May 27 at 11:43

Your Answer

Get an OpenID
or

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