文字列を1文字ずつ処理する


 splitで分割したものを処理します。
$str = 'abcd1234';
foreach $ch (split //, $str) {
	print $ch, "\n";
}

関連項目

split関数