> my $text = ' Anthony Bob ';
>
> my @letters = $text =~ /[[:alpha:]]/g;
>
> print "$_\n" for @letters;

This works too (at least, works for me):

my $text='Anthony Bob';
my @letters=split(//, $text);
print(join("\n", @letters));

-- 
Bernhard van Staveren   -   madcat(at)ghostfield.com
GhostField Internet     -   http://www.ghostfield.com/
"A witty saying proves nothing, but damn it's funny!" - me, 1998 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to