I have a large string that contains text:

"value 1

value 2

value 3

etc..." //over 100 values

I am trying to create a listbox with it's items based on the values in this string.

I used a try catch as I was getting an argument out of range exception which stopped the error but I can't see any items in the listbox :P

string value = "";

int currentIndexPos = 0;

foreach (System.Text.RegularExpressions.Match m in System.Text.RegularExpressions.Regex.Matches(listStr, "\r\n?"))
{
    try
    {
        value = formatted.Substring(currentIndexPos, m.Index - 1); // -1 so the matched value isn't used.

        listBox1.Items.Add(value);

        currentIndexPos = m.Index + 1;
    }

    catch
    { 
        //argument out of range exception
        //Index and length must refer to a location within the string. Parameter name: length
    }
}
link|improve this question

Have you looked at the value of m.Index? – kaj Feb 22 at 17:44
On the very first match would the index of m be 0? Thus the m.Index - 1 would yield the argument out of range error? – DJ Quimby Feb 22 at 17:44
feedback

3 Answers

up vote 2 down vote accepted

As many have said, just use String.Split. However, there's no need for a foreach loop or resorting to LINQ, just do this:

listBox1.Items.AddRange(String.Split(...));
link|improve this answer
Works perfectly :) – cheeseman Feb 22 at 18:46
feedback

Try something like this

var values = listStr.Split("\r\n".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
foreach(string value in values)
{
    listBox1.Items.Add(value);
}
link|improve this answer
Works great, I was using the wrong variable to begin with :P – cheeseman Feb 22 at 18:41
1  
ended up using a combination of 2 answers :P listBox1.Items.AddRange(formatted.Split("\r\n".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)); – cheeseman Feb 22 at 18:50
feedback

Since you are in essence doing a split why not use that function and ignore the index operations.

var lst = String.Split("\r".ToCharArray(),"listStr");
lst.select((x)=>listBox1.Items.Add(x));
link|improve this answer
When I try to add this I get: "The best overloaded method match for 'string.Split(params char[])' has some invalid arguments" – cheeseman Feb 22 at 18:36
Try it now not at an editor so I guessed. – rerun Feb 22 at 18:48
I tried adding that too :P Still get an error, I think it may String.Split, for some reason VS2010 doesnt recognise it... though it's just in System.String.Split :P But typing it won't auto fill in like everything else... – cheeseman Feb 22 at 18:54
feedback

Your Answer

 
or
required, but never shown

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