I would like to parse just one long line from file based on " and , and [ and ] and { and }
For e.g
{"ColumnTypes":"int32","fstring32","int32"],"ColumnNames":"ProductId",","ProductName","Quantity"]}
I actually need two different array from this line column types and column names. I tried string.split("\\W") but it is not working.
Please guide. Thanks in advance.