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.

If I have a variable that contains text information (say taken from a textarea), how can I read the text content held in a string variable line by line?

The text entered in the text area will have \n (enter key) to separate the line.

share|improve this question
a good question here is what is the default max length in a textarea? What is the scope we are working with? – Glennular Apr 19 '10 at 19:38
few thousand lines, less than 10K. – Blankman Apr 19 '10 at 20:18

3 Answers

up vote 6 down vote accepted

You can use a StringReader:

var reader = new StringReader(textbox.Text);
string line;
while (null != (line = reader.ReadLine())) {
     //...
}
share|improve this answer

Try to use

string[] strings = yourString.Split(new string[] {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
share|improve this answer
1  
This is inefficient for large strings. – SLaks Apr 19 '10 at 19:33
1  
@SLaks - Nothing was said about the size. So I assume that the size is reasonable. – Hun1Ahpu Apr 19 '10 at 19:36
2  
You would have serious download and/or injection problems long before this becomes any less efficient than a StringReader. – Henk Holterman Apr 19 '10 at 19:46
string[] splitInput = System.Text.RegularExpressions.Regex.Split(
                        InputString, "\r\n");
share|improve this answer
There is really no point in using regular expressions here. – SLaks Apr 19 '10 at 19:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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