Ruby equivalent of PHP Explode / Implode

Anyone know what the Ruby equivalent of PHP’s explode and implode are
for arrays?

  • Jim

.split .join

Jim J. wrote:

Anyone know what the Ruby equivalent of PHP’s explode and implode are
for arrays?

  • Jim

there is Array#join and String#split

-felix