Hi, I have following Array
[
"T223566^T335125^T311000^",
"Testing1^Testing2^Testing^",
"First^;^Third^",
";^tomorrow^3-D^"
]
And by spltting the list by "^" i want this array as following with
[
{
"Row1": "T223566",
"Row2": "Testing1",
"Row3": "First",
"Row4": ";"
},
{
"Row1": "T335125",
"Row2": "Testing2",
"Row3": ";",
"Row4": "tomorrow"
},
{
"Row1": "T311000",
"Row2": "Testing",
"Row3": "Third",
"Row4": "3-D"
}
]
How do i do this??
/Erik