in reply to Read a variable backwards..
my $var = "8940163...835"; for my $char (split //, reverse $var) { print "$char\n" } [download]