in reply to Re: split chars in string
in thread split chars in string
But, as GrandFather already pointed out, if you think you want to process a string character-by-character in Perl, then the odds are pretty good that you're doing it wrong.$ perl -e 'print "$_\n" for split "", "foo"' f o o
|
|---|