Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to transfer values from each line of a multi line text box into either a string array or a multidimensional array. I also have 3 multi-line text boxes which need to put into the same array. Below is one of the methods I have been trying:

ParkingTimes[0] = tbxtimeLimitS1.Text;

for (int i = 1; i <= 10; i++)
   ParkingTimes[i] = tbxparkingTimesS1.Lines;

ParkingTimes[11] = tbxtimeLimitS2.Lines;

for (int x = 0; x <= 10; x++)
   for (int i = 12; i <= 21; i++)
       ParkingTimes[i] = tbxparkingTimesS2.Lines;

ParkingTimes[11] = tbxtimeLimitS2.Lines[0];

for (int x = 0; x <= 10; x++)
    for (int i = 23; i <= 32; i++)
        ParkingTimes[i] = tbxparkingTimesS3.Lines;

What am I doing wrong? Is there a better way to accomplish this?

share|improve this question

3 Answers

up vote 1 down vote accepted

You could use a List instead of a string array Then the AddRange method could simplify your method eliminatig the foreach loop

List<string> ParkingTimes = new List<string>()
ParkingTimes.Add(tbxtimeLimitS1.Text);   
ParkingTimes.AddRange(tbxparkingTimesS1.Lines);
ParkingTimes.AddRange(tbxtimeLimitS2.Lines);   
ParkingTimes.AddRange(tbxparkingTimesS2.Lines);   
ParkingTimes.AddRange(tbxtimeLimitS2.Lines);   
ParkingTimes.AddRange(tbxparkingTimesS3.Lines);   

If your code still requires a string array it is possible to get back the array with

string[] myLines = ParkingTimes.ToArray();

An example of this List<string> functionality could be found on MSDN here

share|improve this answer
how do i add the line to the array in the foreach loop? – Jack TcRebel Treble Apr 29 '12 at 15:02
Thank You Steve! – Jack TcRebel Treble Apr 29 '12 at 15:34

You can simply do

string[] allLines = textbox.Text.Split('\n');

This will split each line and store the results in the appropriate index in the array. You can then iterate over them like so:

foreach (string text in allLines)
{
    //do whatever with text
}
share|improve this answer
just trying it now, hope it works! – Jack TcRebel Treble Apr 29 '12 at 14:56
did you mean .Text.Split ? – Jack TcRebel Treble Apr 29 '12 at 15:00
how do i add add the text in allLines to a string array? – Jack TcRebel Treble Apr 29 '12 at 15:02
allLines will be your string array. The output of textbox.Text.Split() should be an array of strings, which would then be assigned to allLines – Nick Udell Apr 29 '12 at 15:03
@JackTcRebelTreble: Yes I did mean .Text.Split(), sorry. @Nick Udell is correct: The allLines variable is the array with the strings. – Bryan Crosby Apr 29 '12 at 15:11
show 1 more comment

You can do something like this:

var totalLines = new List<String>();
totalLines.AddRange( tbxparkingTimesS1.Lines );
totalLines.AddRange( tbxparkingTimesS2.Lines );
totalLines.AddRange( tbxparkingTimesS3.Lines );

if you need it in an array instead of a list, then call:

var array = totalLines.ToArray();

Hope it helps.

share|improve this answer
Thank You! - just testing it out now – Jack TcRebel Treble Apr 29 '12 at 15:20
Thank You ivowiblo! – Jack TcRebel Treble Apr 29 '12 at 15:35
Glad it worked :) – ivowiblo Apr 29 '12 at 17:41

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.