{
"result" : [{
"conf" : 1.000000,
"end" : 0.300000,
"start" : 0.000000,
"word" : "bright"
}, {
"conf" : 1.000000,
"end" : 0.720000,
"start" : 0.330000,
"word" : "bright"
}, {
"conf" : 1.000000,
"end" : 1.950000,
"start" : 1.710000,
"word" : "bright"
}],
"text" : "bright bright bright"
}
I have this JSON array with me. I need to extract all the details from the "result" in the table format. For example,
conf start end word
1.000000 0.000000 0.300000 bright
1.000000 0.330000 0.720000 bright
1.000000 1.710000 1.950000 bright
How can I extract these values from the "result" part and append the details in excel?