Can I declare from this element to end with an array slice.
@arary[3...] but this doesn't work?.
You can refer to the last index with $#arary, so:
@arary[3 .. $#arary];
Is that what you meant?
-- Steve
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>