in reply to backward split

Many others already replied you very well offering various different solution. I'll just add that, if you just need to skip the first elements of a string split, you can write as follows:
# Skips first two elements (undef, undef, $val1, $val2) = split(/\./, $string);
Michele.

Replies are listed 'Best First'.
Re^2: backward split
by Aristotle (Chancellor) on Jun 01, 2003 at 13:47 UTC
    Of course that assumes you know beforehand how many dots the source string has. :)

    Makeshifts last the longest.