I have a csv file and I want to get all the values split by comma but the values inside pipe(|
) should not be split. Sample row:
145132825311563,400000,D,|2112163531049,1000N1020170421826600001 |,B
I need the output as:
145132825311563
400000
D
|2112163531049,1000N1020170421826600001 |
B
I have tried some approaches given in similar questions but none of them worked for pipe(|
).