Solved
How to read 1 single string A|B|C|D from Launch and split into 4 entries in evar
Hello everyone,
How can I split this single string A|B|C|D from Launch into 4 differents entries?
Thanks
Hello everyone,
How can I split this single string A|B|C|D from Launch into 4 differents entries?
Thanks
The simplest is with custom code:
var str = "A|B|C|D";
var values = str.split("|");
// values = ["A", "B", "C", "D"]
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.