in reply to How Do You Parse a Line After Each Character?

Hmm. First let me warn that perl doesn't like doing playing with characters like this. Second, $variable will not work - you are evaluating your split in scalar context, meaning it will return the number of characters in the line which is better done by length().
@letters = split //;
will work though.

Mik Firestone ( perlus bigotus maximus )