943,742 Members | Top Members by Rank

Ad:
  • C# Discussion Thread
  • Unsolved
  • Views: 42238
  • C# RSS
Jul 2nd, 2007
0

string into arraylist.............very urgent

Expand Post »
hi,
i want to convert string into arraylist...............
i have a string .......string vaue is str= "12,13,14,15";
now i want convert this string into arraylist..........
like arr={12,13,14,15};
(using c#)
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
gurusamy is offline Offline
9 posts
since May 2007
Jul 2nd, 2007
0

Re: string into arraylist.............very urgent

Use the Split method (member of String) to split the string on commas. The Split method will return an array of Strings.
Moderator
Featured Poster
Reputation Points: 3239
Solved Threads: 838
Posting Genius
Ezzaral is offline Offline
6,761 posts
since May 2007
Jul 3rd, 2007
0

Re: string into arraylist.............very urgent

C# Syntax (Toggle Plain Text)
  1. string str= "12,13,14,15";
  2. string[] strs = str.Split(',');
  3. ArrayList strsList = new ArrayList();
  4. foreach(string s in strs)
  5. strsList.Add(s);
Featured Poster
Reputation Points: 480
Solved Threads: 276
Postaholic
Ramy Mahrous is offline Offline
2,189 posts
since Aug 2006
Jul 4th, 2007
0

Re: string into arraylist.............very urgent

fastest method

C# Syntax (Toggle Plain Text)
  1. string splitme = "foo,bar,feet,meet,meat,skeet";
  2. ArrayList gatherSplit = new ArrayList(splitme.Split(new char[] { ',' }));
Reputation Points: 152
Solved Threads: 39
Master Poster
Killer_Typo is offline Offline
778 posts
since Apr 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C# Forum Timeline: Designing Dynamic Layouts - using drag & drop
Next Thread in C# Forum Timeline: search in datagrid





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC