in reply to Re^4: Merge 2 strings like a zip [unzip()]
in thread Merge 2 strings like a zip

print for unzip('AaBbCcDdEeFGHIJ', 5); could be written more explicitly also as for (unzip('AaBbCcDdEeFGHIJ', 5)) { print $_; } The Perl documentation mentions this here: Statement Modifiers

I think you 're looking for verbosely in lieu of explicitly

I could be wrong :)

  • Comment on Re^5: Merge 2 strings like a zip [unzip()]