ID:268326
 
Is there any way to take off the &s in the list2params() procedure?

Example:
var/list/L = list(1,2,3,4,5)
var/a = list2params(L)
src << a // a would be 1&2&3&3&4&5

I want to filter out the &s so it would just be 12345

If there is another way, please tell me.

Thanks in advance,

~~> Dragon Lord
ckey(a) would output it without the &, I believe.