I have a tibble by a column that is the chr structure, this chr data is similar JSON. now I want to separate all these columns for any id.
example:
tb <- tibble("id" = c(1:4),
"data" = c('{ "name" : "david", "family" : "json" }',
'{ "code" : { "$numInt" : "111" }, "option" : "o_1", "optionType" : "o-2", "category" : "weekly", "title" : "t_1", "description" : "my_description" }',
'{ "myToken" : null, "my_Id" : 1234, "p_Id" : { "$numInt" : "56789" }, "my_Type" : "fax" }',
'{ "my_Id" : 456456, "p_Id" : { "$numInt" : "852852" }, "my_Type" : "ee" }'
))