in reply to How to get each character in string value

If you just want the newlines after each char:
$string = "Hello World"; print join("\n",split //,$string), "\n";

But you can see that

split //,$string

is the black magic.

-QM
--
Quantum Mechanics: The dreams stuff is made of