Name: Anonymous 2011-03-03 8:09
How to split and join a line by the delimiter in Common Lisp?
In Python it's:
and
respectively.
In Python it's:
>>> 'hax,my,anus'.split(',')
['hax', 'my', 'anus']and
>>> ','.join(['hax', 'my', 'anus'])
'hax,my,anus'respectively.