I have this string 'id,obj1,"string, etc",obj2'
, now I need to split this into an dict like this:
{
1 = 'id',
2 = 'obj1',
3 = 'string, etc',
4 = 'obj2'
}
I have been playing around with regular expressions, trying to divide the string but with no success. Any help is appreciated