Hello, I have webhook form submission. There are multiple inputs of the same type of info e.g. name1 address1, name 2 address2 etc
[
{
"Name-1": "bob",
"Adress-1": "bob lane",
"Name-2": "tom",
"Address-2": "tom lane",
"Name-3": "brit",
"Address-3": "brit lane"
}
]
I would like this to be turned into arrays like:
Name
-1
-2
-3
Address
-1
-2
-3
Example screenshot of the array i want:
Please does anyone know how to do this? thank you