vote up 2 vote down star
1

I'd like to do something like this:

Dim Foo as String = "a,b,c,d,e"
Dim Boo as List(of String) = Foo.Split(","c)

Of course Foo.Split returns a one-dimensional array of String, not a generic List. Is there a way to do this without iterating through the array to turn it into a generic List?

flag

79% accept rate

6 Answers

vote up 6 vote down check

If you don't want to use LINQ, you can do:

Dim foo As String = "a,b,c,d,e"
Dim boo As New List(Of String)(foo.Split(","c))
link|flag
vote up 0 vote down

Here is how I am doing it ... since the split is looking for an array of char I clip off the first value in my string.

var values = labels.Split(" "[0]).ToList<string>();
link|flag
vote up 1 vote down

The easiest method would probably be the AddRange method.

Dim Foo as String = "a,b,c,d,e"
Dim Boo as List(of String)

Boo.AddRange(Foo.Split(","c))
link|flag
Thanks - this works as well as the accepted answer but is slightly less compact. – Herb Caudill Oct 14 '08 at 15:24
That code works? It looks to me like it would throw a NullReferenceException. – Kyralessa Oct 15 '08 at 3:25
You're right. I forgot to create the Boo instance. – amcoder Oct 16 '08 at 19:16
vote up 6 vote down

Do you really need a List<T> or will IList<T> do? Because string[] already implements the latter... just another reason why it's worth programming to the interfaces where you can. (It could be that in this case you really can't, admittedly.)

link|flag
You can use IList<T>, in fact you should (even though I forgot to in my answer's code example) – IAmCodeMonkey Oct 14 '08 at 15:23
I agree, although I am trying to get into this habbit. – Saif Khan Oct 14 '08 at 15:24
vote up 5 vote down

You can use the List's constructor.

String foo = "a,b,c,d,e";
List<String> boo = new List<String>(foo.Split(","));
link|flag
Gave answer to @Bob King for answering in VB.NET - thanks. – Herb Caudill Oct 14 '08 at 15:25
Sorry mats! No hard feelings! – Bob King Oct 14 '08 at 19:26
vote up 0 vote down

If you use Linq, you can use the ToList() extension method

Dim strings As List<string> = string_variable.Split().ToList<string>();
link|flag
How exactly do you propose using Linq to query a comma-separated string? – Herb Caudill Oct 14 '08 at 15:22
He's not querying it. The ToList() extension method Code Monkey shows in his answer is just part of the class of functionality common known as "Linq" (and is used to support LINQ query, but you can use it for other things) – James Curran Oct 14 '08 at 15:28

Your Answer

Get an OpenID
or

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