perl tips(1)
文字列を1文字ずつに分解する方法
対象の文字列を $string として、
split /[\s]*/, $string;
とすれば、 $string を1文字ずつに分解したリストが返る。