I want to split string with "," but from 2nd comma(,) [closed]

haven’t tried it, but you will need something like this:

string pattern = "|\*,";            
string[] result = Regex.Split(before_split, pattern);

Leave a Comment