in reply to Re: Splitting two digitsin thread Splitting two digits
#!/usr/bin/perl -lw $"=","; $_="20"; @F=split//; print "@F"; [download]
My code only handles two digits by design. The title of the node is "Splitting two digits" so I restricted my solution to only returning two digits.
-- Grant me the wisdom to shut my mouth when I don't know what I'm talking about.