Hey!
I want to replace the string values into an array and send to the webhook.
That's what I'm doing:
1 step. I get a string with values separated by commas
2 step. I use “Code by Zapier” for split by “, ” and creating an array
And this is work!
3 step. Send this Array to Webhook
As a result, this is what I get
a
{
"like2": "Variant 5,\nVariant 4,\nVariant 3"
}
]
But I need to get it in a different form, with this
{
"like2": /"Variant 5", "Variant 4", "Variant 3"]
}
- I want array only from value
- I also want to delete the "\n"
Please help me how to do this?