All-Star
24872 Points
4336 Posts
ASPInsiders
Moderator
MVP
Oct 17, 2006 01:07 AM|vcsjones|LINK
string input = "\"Product Name\",\"Product HTML Description\",8.99,4.99"; string[] inputs = Array.ConvertAll<string, string>(input.Split(','), delegate(string _in) { return _in.Trim('"'); });
All-Star
24872 Points
4336 Posts
ASPInsiders
Moderator
MVP
Re: How do I split this?
Oct 17, 2006 01:07 AM|vcsjones|LINK