vote up 2 vote down star
1

C#, a String's Split() method, how can I put the resulting string[] into an ArrayList or Stack?

flag

20% accept rate

4 Answers

vote up 15 vote down check

You can initialize a List with an array (or any other object that implements IEnumerable). You should prefer the strongly typed List over ArrayList.

List<string> myList = new List<string>(myString.Split(','));
link|flag
er, List<string> stringList = new List<string>(myString.Split(',')); you beat me to the punch! just fix your variable declaration ;) – TJB Jan 20 at 0:01
vote up 4 vote down

If you want a re-usable method, you could write an extension method.

public static ArrayList ToArrayList(this IEnumerable enumerable) {  
  var list = new ArrayList;
  for ( var cur in enumerable ) {
    list.Add(cur);
  }
  return list;
}

public static Stack ToStack(this IEnumerable enumerable) {
  return new Stack(enumerable.ToArrayList());
}

var list = "hello wolrld".Split(' ').ToArrayList();
link|flag
Seems like a bit much for an already built in mechanism. Gotta be careful with those extension methods... – Ed Swangren Jan 20 at 0:15
Extension methods are the antichrist, but I love them all the same – lagerdalek Jan 20 at 0:15
@Ed, really? What built-in mechanism exists to convert any IEnumerable to an ArrayList. – JaredPar Jan 20 at 0:16
Why not convert to a List<Object> – Atomiton Jan 20 at 0:19
@Atomiton, the questioner asked for ArrayList. Converting to List<object> is fairly easy though. enumerable.Cast<object>.ToList(); – JaredPar Jan 20 at 0:21
show 5 more comments
vote up 1 vote down
string[] strs = "Hello,You".Split(',');
ArrayList al = new ArrayList();
al.AddRange(strs);
link|flag
I would not recommend using ArrayList anymore. – Ed Swangren Jan 20 at 0:05
Though that is what he asked for. – Ed Swangren Jan 20 at 0:06
vote up 0 vote down

Or if you insist on an ArrayList or Stack

string myString = "1,2,3,4,5";
ArrayList al = new ArrayList(myString.Split(','));
Stack st = new Stack(myString.Split(','));
link|flag

Your Answer

Get an OpenID
or

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