Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've googled this and can't find an answer.

Basically, I have a TextBox. I want to read a textbox line by line. I have this code:

string[] lst = txt.Split(new Char[] { '\n', '\r' }, StringSplitOptions.RemoveEmptyEntries);

This splits up every line but I can't modify or read it. How do I do this?

share|improve this question
3  
In what way can you not read it? It's an array. And which UI platform are you using? WinForms at least has a Lines property... – Jon Skeet Jan 31 at 23:28
you can read the values of the lst with a simple foreach loop – DJ KRAZE Jan 31 at 23:28
I mean read as in have my C# code use it. – chipperyman573 Jan 31 at 23:30
@chipperyman573 You can totally use it. Check this: foreach(var s in lst) MessageBox.Show(s). – Theodoros Chatzigiannakis Jan 31 at 23:31
what do you mean by that.. please be more specific chipperyman573 try to save yourself from downvotes... show relevant code, be more specific, and formulate a question that will lead to less assumptions – DJ KRAZE Jan 31 at 23:31

closed as not constructive by DJ KRAZE, John Koerner, Jeremy, SztupY, itsme86 Feb 1 at 0:20

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

lst.Length will give you the number of elements in the array. beyond that you're going to have to be more specific in your questio as to what you want to be able to do.

share|improve this answer
string line = null;
using(var sr = new StringReader(txt))
    while((line=sr.ReadLine()) != null)
        Console.WriteLine(line)
share|improve this answer

If I understand rightly, you need to read line by line, try this:

string[] lines = TextBox.Text.Split(new char[] { '\n' });
foreach(string line in lines)
{
   // read 'line' variable
}

With this, you will get an array of lines in your TexTbox. You also can access by index, using lines[index].

you can use a Length property.

int total = lst.Length;

if you want to specify a char to count, you can use the Count extension method.

// add the Linq namespace.
using System.Linq;

int total = lst.Count(c => c == "c");
share|improve this answer
I don't need the length, I need to take line one, read it, line two, read it, etc... – chipperyman573 Jan 31 at 23:30
Felipe Oriani you have a typo in your Spli – DJ KRAZE Jan 31 at 23:34
Thank you DJ KRAZE,. I correct my code. :) Take a look at my edits. – Felipe Oriani Jan 31 at 23:34
chipperyman573, is the textbox a multiline textbox..? take a screen shot and add it to your question... – DJ KRAZE Jan 31 at 23:35
Yes, DJ. Also, your code outputs: 'System.Windows.Forms.Control.Text.get' . System.Windows.Forms... doesn't exist. – chipperyman573 Jan 31 at 23:36
show 2 more comments

I suppose that your TextBox has the MultiLine property set to True. You can get the lines of your TextBox simply with

string[] lines = textBox1.Lines;

already splitted at the newline char. Then you could iterate over then

for(int x=0; x<lines.Length; x++)
{
    if(!string.IsNullOrEmpty(lines[0])
         // process...
}

the loop using for is preferable to using foreach if you need to change the line

share|improve this answer
So then lines[0] would get the first line on my question? – chipperyman573 Jan 31 at 23:31
chipperyman573 here is a good link that you should read it's a tutorial I would suggest reading it homeandlearn.co.uk/csharp/csharp.html – DJ KRAZE Jan 31 at 23:32
Yes also for(x=0;x<lines.Length;x++) – Steve Jan 31 at 23:35

Your problem doesn't lie within the code in your question.

You need to show more of it, specially how lst is used after that statement. The following property will give you what you need.

lst.Length //holds the number of strings in lst.

You can acess each string with:

string valueInIndex_i = lst[i];

You can iterate throught its contents with:

foreach(string thisString in lst)
{
     //do stuff with thisString
}
share|improve this answer

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