How can I split the string to multiple substrings?
String = "5260,GOODS,4,10,TISSUE,,84,\"1,008\",24,24,,,78,84,24";
I was spliting the string to string[] by using comma separator ","
But One value contains comma - \"1,008\"
Is there any way to get the string as
Expected Output -
"5260,GOODS,4,10,TISSUE,,84,1008,24,24,,,78,84,24";