in reply to Splitting two digits

I've used split like this:
@field = split //, $text;
to accomplish the task. Note that it will split up ALL chars of $text, not just numbers -- and not just two of them.

--
"To err is human, but to really foul things up you need a computer." --Paul Ehrlich