-
I have this input
My first goal is to split first field by
I imagine I should use some map class function as Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think this is going to be hard since in If I understand correctly the data structure is of the form
and I don't know how to process this data that way, unless either you use a file format that supports nesting (like JSON), or, change one of the delimiters -- for example with a semicolon:
|
Beta Was this translation helpful? Give feedback.
I think this is going to be hard since in
field_a=2,3,field_b=a,b,c#a,b
the commas are playing the double role of separatingfield_a
stuff fromfield_b
stuff, and, separating2
from3
and likewisea
,b
,c#a
,b
.If I understand correctly the data structure is of the form
and I don't know how to process this data that way, unless either you use a file format that supports nesting (like JSON), or, change one of the delimiters -- for example with a semicolon: