String result = "{"results":[{"IsRecommended":null,"BadgesOrder":[10,20,aa]},{"IsRecommended":false,"BadgesOrder":[30,40.bb]}]}";
How to split the string in such a way, it should hold the values in the string when it is passed to csv library it prints out the contents to csv in the below pattern.
IsRecommended BadgesOrder
null [10,20,aa]
false [30,5,bb]