J
Julian Leviston
Is there are similar thing to the PHP version of implode in ruby?
I want this to happen...
z = %w[yeah, cool, mad, awesome, funky]
x = z.implode
x
'yeahcoolmadeawesomefunky'
x = z.implode(', ')
x
'yeah, cool, mad, awesome, funky'
I guess I'll just go write one.
Julian.
I want this to happen...
z = %w[yeah, cool, mad, awesome, funky]
x = z.implode
x
'yeahcoolmadeawesomefunky'
x = z.implode(', ')
x
'yeah, cool, mad, awesome, funky'
I guess I'll just go write one.
Julian.