Missing join() function
Moderator: Martin
Missing join() function
join() function would be nice to supplement the split() function
Re: Missing join() function
Hi,
I add a function like join(list, delimiter) to the todo-list.
You can use following syntax to create a comma separated list (takes also care of quoting values with special characters):
logs: 1,2,"a,b"
Regards,
Martin
I add a function like join(list, delimiter) to the todo-list.
You can use following syntax to create a comma separated list (takes also care of quoting values with special characters):
Code: Select all
list = newList(1, 2, "a,b");
text = "{list,listformat,comma}";
log(text);
Regards,
Martin