Re: Each char / letter --> array from string value



On 12/28/05, Adriano Ferreira <a.r.ferreira@xxxxxxxxx>
The usual way to tear apart a string into an array with characters is
@chars = split '', $string;
It is documented at C<perldoc -f split>.

On 12/28/05, Chris Devers <cdevers@xxxxxxxxx> wrote:
>
> $ perl -le '$i = "abcd"; @j = split //, $i; print join "\n", @j;'
>

Miles de gracias....

Cheers,
Umesh