string s = @"""3030495"",""This is a great product, at a great price"",""100.00""";
Regex reg = new Regex(@""",""", RegexOptions.Compiled | RegexOptions.IgnoreCase);
string[] arr = reg.Split(s.Trim('"'));
foreach(string current in arr){
Console.WriteLine(">>" + current);
}
Member
50 Points
51 Posts
Re: How do I split this?
Oct 17, 2006 04:19 PM|vladi|LINK