One JSON data set is provided below:
[{ ID: '0001591',
name: 'EDUARDO DE BARROS THOMÉ',
class: 'EM1A',
'phone Pai': '(11) 999822922',
'email Pai': '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d2a1b7a0b5bbbde5e2e5e292b5bebdb0bdfcb1bdbf">[email protected]</a>',
{ ID: '0001592',
name: 'JEAN LUC EUGENE VINSON',
class: 'EM1A',
'phone Pai': '(11) 981730534',
'email Pai': '<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="046e61656a7461726d6a44606d77706d77706b676f2c676b692c6676">[email protected]</a>',
I'd like it to be displayed as follows:
[{ ID: '0001591',
name: 'EDUARDO DE BARROS THOMÉ',
class: 'EM1A',
Address[
type:Phone,
tag:Pai,
address:'(11) 999822922',
]
Address[
type:Email,
tag:Pai,
address:'<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5f2c3a2d383630686f686f1f3833303d30713c3032">[email protected]</a>',
]
},
{ ID: '0001592',
name: 'JEAN LUC EUGENE VINSON',
class: 'EM1A',
Address[
type:Phone,
tag:Pai,
address:'(11) 981730534',
]
Address[
type:email,
tag:Pai,
address:'<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="701a15111e001506191e031f1e30141903041f131b5e131f1d5e1202">[email protected]</a>',
]
} ]
If you have any suggestions, please feel free to share.