Quote:
Originally Posted by ownedbycats
If I wish to combine three items ($#foo, $#bar, and 'foo, bar'), is there a better way than two separate list_unions()?
|
Use
list_join(), as in
Code:
program:
list_join(', ', $#foo, ',', $#bar, ',', 'foo, bar', ',')